Started GET "/admin" for 10.0.2.2 at 2014-07-14 14:28:49 +0000 ActiveRecord::PendingMigrationError - Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.: activerecord (4.0.4) lib/active_record/migration.rb:383:in `check_pending!' activerecord (4.0.4) lib/active_record/migration.rb:370:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__407877683__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/83687880/variables" for 10.0.2.2 at 2014-07-14 14:28:49 +0000  (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateAdminCompanies (20140206211804)  (0.1ms) begin transaction  (2.6ms) CREATE TABLE "companies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "country_id" integer, "state_id" integer, "city_id" integer, "address" varchar(255), "address_complement" varchar(255), "number" varchar(255), "zipcode" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_companies_on_country_id" ON "companies" ("country_id")  (0.1ms) CREATE INDEX "index_companies_on_state_id" ON "companies" ("state_id")  (0.1ms) CREATE INDEX "index_companies_on_city_id" ON "companies" ("city_id") SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140206211804"]]  (2.5ms) commit transaction Migrating to CreateAdminCountries (20140206211829)  (0.1ms) begin transaction  (3.4ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140206211829"]]  (2.0ms) commit transaction Migrating to CreateAdminStates (20140206211850)  (0.1ms) begin transaction  (2.9ms) CREATE TABLE "states" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "country_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_states_on_country_id" ON "states" ("country_id") SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140206211850"]]  (2.1ms) commit transaction Migrating to CreateAdminCities (20140206211923)  (0.1ms) begin transaction  (3.6ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "country_id" integer, "state_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_cities_on_country_id" ON "cities" ("country_id")  (0.2ms) CREATE INDEX "index_cities_on_state_id" ON "cities" ("state_id") SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140206211923"]]  (2.6ms) commit transaction Migrating to CreateAdminPeople (20140206212128)  (0.1ms) begin transaction  (3.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "dob" datetime, "country_id" integer, "state_id" integer, "city_id" integer, "address" varchar(255), "address_complement" varchar(255), "number" varchar(255), "zipcode" integer, "employed" boolean, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_people_on_country_id" ON "people" ("country_id")  (0.8ms) CREATE INDEX "index_people_on_state_id" ON "people" ("state_id")  (0.1ms) CREATE INDEX "index_people_on_city_id" ON "people" ("city_id") SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140206212128"]]  (2.5ms) commit transaction Migrating to CreateJobs (20140309013000)  (0.1ms) begin transaction  (4.0ms) CREATE TABLE "jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140309013000"]]  (2.5ms) commit transaction Migrating to CreateProfessionalExperiences (20140309013019)  (0.1ms) begin transaction  (3.6ms) CREATE TABLE "professional_experiences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "people_id" integer, "company_id" integer, "job_id" integer, "started_at" datetime, "finished_at" datetime, "finished_status" integer, "created_at" datetime, "updated_at" datetime)  (0.3ms) CREATE INDEX "index_professional_experiences_on_people_id" ON "professional_experiences" ("people_id")  (0.1ms) CREATE INDEX "index_professional_experiences_on_company_id" ON "professional_experiences" ("company_id")  (0.1ms) CREATE INDEX "index_professional_experiences_on_job_id" ON "professional_experiences" ("job_id") SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140309013019"]]  (2.7ms) commit transaction Migrating to DeviseCreateAdminUsers (20140323020642)  (0.1ms) begin transaction  (3.8ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' 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 NOT NULL, "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)   (11.9ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token") SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140323020642"]]  (2.5ms) commit transaction Migrating to CreateNotifications (20140323020643)  (0.1ms) begin transaction  (3.7ms) CREATE TABLE "notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "message" varchar(255), "link" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140323020643"]]  (2.6ms) commit transaction Migrating to CreateAdminUserNotifications (20140323020644)  (0.1ms) begin transaction  (2.9ms) CREATE TABLE "admin_user_notifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "read" boolean DEFAULT 'f', "notification_id" integer, "admin_user_id" integer, "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE INDEX "index_admin_user_notifications_on_notification_id" ON "admin_user_notifications" ("notification_id")  (0.1ms) CREATE INDEX "index_admin_user_notifications_on_admin_user_id" ON "admin_user_notifications" ("admin_user_id") SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140323020644"]]  (2.2ms) commit transaction Migrating to AddColumnsToAdminUsers (20140323020645)  (0.1ms) begin transaction  (3.6ms) ALTER TABLE "admin_users" ADD "provider" varchar(255)  (0.2ms) ALTER TABLE "admin_users" ADD "uid" varchar(255)  (0.2ms) ALTER TABLE "admin_users" ADD "avatar" varchar(255) SQL (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140323020645"]]  (2.0ms) commit transaction Migrating to CreateInstallments (20140424142748)  (0.5ms) begin transaction  (3.9ms) CREATE TABLE "installments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140424142748"]]  (2.3ms) commit transaction Migrating to CreateCreditCards (20140424142805)  (0.1ms) begin transaction  (2.7ms) CREATE TABLE "credit_cards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (1.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140424142805"]]  (2.6ms) commit transaction Migrating to CreateInstallmentsCreditCads (20140424142835)  (0.1ms) begin transaction  (2.9ms) CREATE TABLE "installments_credit_cads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "installment_id" integer, "credit_card_id" integer, "created_at" datetime, "updated_at" datetime)   (1.0ms) CREATE INDEX "index_installments_credit_cads_on_installment_id" ON "installments_credit_cads" ("installment_id")  (0.2ms) CREATE INDEX "index_installments_credit_cads_on_credit_card_id" ON "installments_credit_cads" ("credit_card_id") SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140424142835"]]  (2.6ms) commit transaction ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/admin" for 10.0.2.2 at 2014-07-14 14:29:17 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 67ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-14 14:29:17 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (4.4ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (133.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.1ms) Completed 200 OK in 1514ms (Views: 1488.4ms | ActiveRecord: 1.5ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 14:29:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-14 14:29:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-14 14:29:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-14 14:29:25 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-07-14 14:29:25 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (81.8ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-14 14:29:32 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qgykLMWrN+KEXKPyB+Z/WsNjdVnpnc2ANm+S+jPJTcU=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 23ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qgykLMWrN+KEXKPyB+Z/WsNjdVnpnc2ANm+S+jPJTcU=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (34.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 366ms (Views: 281.1ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:33 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:34 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:35 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:35 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-14 14:29:40 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qgykLMWrN+KEXKPyB+Z/WsNjdVnpnc2ANm+S+jPJTcU=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (4.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 11ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qgykLMWrN+KEXKPyB+Z/WsNjdVnpnc2ANm+S+jPJTcU=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (32.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 361ms (Views: 278.4ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:40 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:41 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:29:43 +0000  (0.1ms) begin transaction Carnival::AdminUser Exists (1.6ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (19.6ms) INSERT INTO "admin_users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Jul 2014 14:31:13 UTC +00:00], ["email", "admin@vizir.com.br"], ["encrypted_password", "$2a$10$KJnPO0Cth4MQNw8w7YqZXO1q/AlQBZwNpnBQqbMFuOwDwrthBbM3a"], ["updated_at", Mon, 14 Jul 2014 14:31:13 UTC +00:00]]  (3.0ms) commit transaction Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-14 14:31:43 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qgykLMWrN+KEXKPyB+Z/WsNjdVnpnc2ANm+S+jPJTcU=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction Binary data inserted for `string` type on column `last_sign_in_ip` Binary data inserted for `string` type on column `current_sign_in_ip` SQL (20.5ms) UPDATE "admin_users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["last_sign_in_at", Mon, 14 Jul 2014 14:31:44 UTC +00:00], ["current_sign_in_at", Mon, 14 Jul 2014 14:31:44 UTC +00:00], ["last_sign_in_ip", "10.0.2.2"], ["current_sign_in_ip", "10.0.2.2"], ["sign_in_count", 1], ["updated_at", Mon, 14 Jul 2014 14:31:44 UTC +00:00]]  (3.2ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 251ms (ActiveRecord: 27.1ms) Started GET "/admin" for 10.0.2.2 at 2014-07-14 14:31:44 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (129.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (320.4ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (90.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (39.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.2ms) Completed 200 OK in 1363ms (Views: 1210.1ms | ActiveRecord: 7.1ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:46 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:46 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 14:31:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-14 14:31:50 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:31:50 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-14 14:31:50 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-14 14:31:50 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-14 14:31:51 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&_=1405348306883" for 10.0.2.2 at 2014-07-14 14:31:51 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "_"=>"1405348306883"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (32.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (137.2ms) Completed 200 OK in 404ms (Views: 396.1ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-14 14:31:52 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-14 14:31:55 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (28.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (167.5ms)  (1.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (81.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (367.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (777.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1138ms (Views: 1102.7ms | ActiveRecord: 13.0ms) Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:58 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:58 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:59 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:59 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:31:59 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-14 14:32:00 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-14 14:32:00 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-14&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405348317856" for 10.0.2.2 at 2014-07-14 14:32:00 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-14", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405348317856"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-14 23:59:59') Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-14 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 12ms (Views: 3.4ms | ActiveRecord: 4.7ms) Started GET "/admin/people" for 10.0.2.2 at 2014-07-14 14:32:35 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (18.0ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (17.9ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (42.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (305.1ms)  (1.3ms) SELECT COUNT(*) FROM "people"  (1.5ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.1ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (456.7ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (37.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 858ms (Views: 796.6ms | ActiveRecord: 14.9ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:39 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:39 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&bSortable_8=false&_=1405348357897" for 10.0.2.2 at 2014-07-14 14:32:40 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "bSortable_8"=>"false", "_"=>"1405348357897"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.2ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 3.0ms | ActiveRecord: 4.3ms) Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-14 14:32:41 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (25.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (516.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__24883159__620492248 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (605.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (642.7ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 992ms (Views: 983.8ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:43 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:44 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:45 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:32:45 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-14 14:32:46 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-14 14:32:46 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-14 14:32:46 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Carnival::AdminUser Exists (1.4ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' LIMIT 1  (0.1ms) rollback transaction  (0.1ms) begin transaction SQL (46.9ms) INSERT INTO "countries" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "BR"], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "Brazil"], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction Admin::State Exists (1.5ms) SELECT 1 AS one FROM "states" WHERE "states"."code" = 'SP' LIMIT 1 SQL (2.3ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "SP"], ["country_id", 1], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "São Paulo"], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (3.9ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "São Paulo"], ["state_id", 1], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (3.8ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "Campinas"], ["state_id", 1], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.2ms) commit transaction  (0.0ms) begin transaction Admin::State Exists (1.4ms) SELECT 1 AS one FROM "states" WHERE "states"."code" = 'RJ' LIMIT 1 SQL (2.0ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "RJ"], ["country_id", 1], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "Rio de Janeiro"], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (3.4ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "Angra dos Reis"], ["state_id", 2], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (3.5ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00], ["name", "Barra Mansa"], ["state_id", 2], ["updated_at", Mon, 14 Jul 2014 14:33:04 UTC +00:00]]  (2.2ms) commit transaction Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-14 14:33:08 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (5.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.5ms) Admin::Country Load (2.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (99.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (93.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1105.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__24883159__620492248 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1153.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1217.5ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (4.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (10.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1828ms (Views: 1811.5ms | ActiveRecord: 13.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:10 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 14:33:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:33:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 14:33:17 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-14 14:33:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-14 14:33:18 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-14 14:33:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-14 14:33:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-14 14:33:18 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-14 14:33:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-14 14:33:19 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-07-14 14:33:23 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (1.6ms) Completed 200 OK in 335ms (Views: 322.7ms | ActiveRecord: 3.4ms) Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/city_id/state_id/1" for 10.0.2.2 at 2014-07-14 14:33:30 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"city_id", "dependency_field"=>"state_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE (state_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (0.4ms) Completed 200 OK in 302ms (Views: 286.9ms | ActiveRecord: 5.3ms) Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/city_id/state_id/2" for 10.0.2.2 at 2014-07-14 14:33:32 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"city_id", "dependency_field"=>"state_id", "dependency_value"=>"2"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.1ms) SELECT "cities".* FROM "cities" WHERE (state_id = '2') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (0.6ms) Completed 200 OK in 316ms (Views: 309.3ms | ActiveRecord: 2.7ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-14 14:45:41 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (32.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (246.0ms)  (1.2ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (38.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (433.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (35.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 920ms (Views: 808.4ms | ActiveRecord: 18.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:43 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:43 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:44 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:46 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:46 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:47 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:48 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:48 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:45:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 14:45:48 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-14 14:45:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-14 14:45:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-14 14:45:49 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-14 14:45:49 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:45:49 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-14&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405349145730" for 10.0.2.2 at 2014-07-14 14:45:50 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-14", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405349145730"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-14 23:59:59') Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-14 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (27.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (24.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (139.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.3ms) Completed 200 OK in 918ms (Views: 909.0ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-14 14:45:51 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-14 14:45:51 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-14 14:45:51 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-14 14:45:51 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:45:53 +0000 Started GET "/admin/cities" for 10.0.2.2 at 2014-07-14 14:45:56 +0000 Processing by Admin::CitiesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (18.1ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (166.4ms)  (1.3ms) SELECT COUNT(*) FROM "cities" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (33.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (350.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (38.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 772ms (Views: 747.1ms | ActiveRecord: 11.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:57 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:58 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:59 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 14:45:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:00 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:01 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:02 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:02 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:03 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:46:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 14:46:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-14 14:46:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-14 14:46:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-14 14:46:04 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:46:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-14 14:46:04 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1405349160182" for 10.0.2.2 at 2014-07-14 14:46:05 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "_"=>"1405349160182"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') ORDER BY cities.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.7ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (129.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.6ms) Completed 200 OK in 1657ms (Views: 1642.5ms | ActiveRecord: 10.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-14 14:46:07 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-14 14:46:07 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-14 14:46:07 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-14 14:46:07 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-14 14:47:10 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (100.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (228.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (38.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 590ms (Views: 574.1ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 14:47:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:15 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:15 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:47:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 14:47:16 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-14 14:47:16 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-14 14:47:16 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-14 14:47:16 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:47:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-14 14:47:17 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405349233326" for 10.0.2.2 at 2014-07-14 14:47:17 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405349233326"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.1ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (130.1ms) Completed 200 OK in 463ms (Views: 455.9ms | ActiveRecord: 4.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-14 14:47:18 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-14 14:47:18 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-14 14:47:18 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:47:29 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-14 14:56:20 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (105.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (277.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 736ms (Views: 640.4ms | ActiveRecord: 11.8ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:22 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:23 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 14:56:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:26 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:27 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 14:56:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 14:56:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-14 14:56:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-14 14:56:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-14 14:56:28 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:56:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-14 14:56:28 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405349784472" for 10.0.2.2 at 2014-07-14 14:56:28 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405349784472"} Carnival::AdminUser Load (1.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (50.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (65.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.6ms) Completed 200 OK in 530ms (Views: 523.4ms | ActiveRecord: 3.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-14 14:56:29 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-14 14:56:29 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-14 14:56:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 14:56:31 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-14 15:02:25 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (98.0ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (227.8ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 691ms (Views: 562.1ms | ActiveRecord: 10.9ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:27 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:31 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 15:02:32 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405350149148" for 10.0.2.2 at 2014-07-14 15:02:32 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405350149148"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (24.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (83.5ms) Completed 200 OK in 429ms (Views: 422.4ms | ActiveRecord: 4.3ms) Started GET "/admin/countries" for 10.0.2.2 at 2014-07-14 15:02:40 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (105.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (244.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 688ms (Views: 592.5ms | ActiveRecord: 10.9ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:41 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:41 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:41 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-14 15:02:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:43 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:44 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:45 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:46 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:46 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-14 15:02:46 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-14 15:02:46 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405350163832" for 10.0.2.2 at 2014-07-14 15:02:47 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405350163832"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (136.7ms) Completed 200 OK in 467ms (Views: 459.9ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-14 18:09:15 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-16 14:51:09 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::PendingMigrationError - Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development : activerecord (4.1.4) lib/active_record/migration.rb:389:in `check_pending!' activerecord (4.1.4) lib/active_record/migration.rb:377:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/94715390/variables" for 10.0.2.2 at 2014-07-16 14:51:09 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePersonHistories (20140616173200)  (0.1ms) begin transaction  (3.7ms) CREATE TABLE "person_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "history" text, "created_at" datetime, "updated_at" datetime)   (0.1ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "index_person_histories_on_person_id" ON "person_histories" ("person_id") SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140616173200"]]  (2.0ms) commit transaction Migrating to AddBirthDateToPeople (20140623162224)  (0.1ms) begin transaction  (3.5ms) ALTER TABLE "people" ADD "birth_date" datetime SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140623162224"]]  (2.4ms) commit transaction ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_admin_user_notifications_on_admin_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_user_notifications_on_admin_user_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_admin_user_notifications_on_notification_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_user_notifications_on_notification_id' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_users_on_reset_password_token' AND type='index'   (1.4ms) SELECT sql FROM sqlite_master WHERE name='index_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_users_on_email' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_cities_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_cities_on_state_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_cities_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_cities_on_country_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_companies_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_companies_on_city_id' AND type='index'   (1.1ms) SELECT sql FROM sqlite_master WHERE name='index_companies_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_companies_on_state_id' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_companies_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_companies_on_country_id' AND type='index'   (1.5ms) SELECT sql FROM sqlite_master WHERE name='index_installments_credit_cads_on_credit_card_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_installments_credit_cads_on_credit_card_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_installments_credit_cads_on_installment_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_installments_credit_cads_on_installment_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_people_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_city_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_people_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_state_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_people_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_country_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_person_histories_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_person_histories_on_person_id' AND type='index'   (0.9ms) SELECT sql FROM sqlite_master WHERE name='index_professional_experiences_on_job_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_professional_experiences_on_job_id' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_professional_experiences_on_company_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_professional_experiences_on_company_id' AND type='index'   (1.1ms) SELECT sql FROM sqlite_master WHERE name='index_professional_experiences_on_people_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_professional_experiences_on_people_id' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_states_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_states_on_country_id' AND type='index'  Started GET "/admin" for 10.0.2.2 at 2014-07-16 14:51:32 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 65ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-16 14:51:33 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (3.1ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (113.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 1778ms (Views: 1737.0ms | ActiveRecord: 5.0ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:36 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:36 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 14:51:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:38 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:38 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:39 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:39 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:39 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:40 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:40 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 14:51:41 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 14:51:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 14:51:42 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-07-16 14:51:42 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.1ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-16 14:51:46 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqkG4pXkSONK3NX5HuINhKAfwfxXGFRHQ4iSZs479s4=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (5.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 123ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqkG4pXkSONK3NX5HuINhKAfwfxXGFRHQ4iSZs479s4=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (32.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 380ms (Views: 296.4ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:47 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-16 14:51:51 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqkG4pXkSONK3NX5HuINhKAfwfxXGFRHQ4iSZs479s4=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 87ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqkG4pXkSONK3NX5HuINhKAfwfxXGFRHQ4iSZs479s4=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.4ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (37.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 383ms (Views: 300.1ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:52 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-16 14:51:55 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqkG4pXkSONK3NX5HuINhKAfwfxXGFRHQ4iSZs479s4=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (3.3ms) UPDATE "admin_users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["current_sign_in_at", "2014-07-16 14:51:56.172841"], ["sign_in_count", 2], ["updated_at", "2014-07-16 14:51:56.175854"]]  (2.2ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 107ms (ActiveRecord: 7.4ms) Started GET "/admin" for 10.0.2.2 at 2014-07-16 14:51:56 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (136.0ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (323.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (72.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (47.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 992ms (Views: 787.9ms | ActiveRecord: 5.7ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:57 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 14:51:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 14:51:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 14:51:58 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 14:51:58 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 14:51:59 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 14:51:59 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405522317900" for 10.0.2.2 at 2014-07-16 14:51:59 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405522317900"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 110ms (Views: 102.3ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 14:52:00 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 14:52:00 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-16 15:03:42 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (101.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (202.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 682ms (Views: 557.7ms | ActiveRecord: 10.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:44 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:44 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:03:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:49 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:49 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:03:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:03:49 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:03:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:03:50 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:03:50 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:03:50 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:03:51 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523026596" for 10.0.2.2 at 2014-07-16 15:03:51 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523026596"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 110ms (Views: 102.3ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 15:03:51 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:03:51 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:03:52 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:03:52 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-16 15:04:07 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (98.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (234.6ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 773ms (Views: 604.2ms | ActiveRecord: 10.0ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:08 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:08 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:09 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:10 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:10 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:13 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:13 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:13 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:13 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:13 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:04:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:04:14 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523051118" for 10.0.2.2 at 2014-07-16 15:04:14 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523051118"} Carnival::AdminUser Load (1.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (0.7ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 153ms (Views: 145.6ms | ActiveRecord: 4.4ms) Started GET "/admin" for 10.0.2.2 at 2014-07-16 15:04:44 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 114ms NameError - undefined local variable or method `page' for Carnival::AdminUserPresenter:Class: /project/app/presenters/carnival/admin_user_presenter.rb:32:in `' /project/app/presenters/carnival/admin_user_presenter.rb:3:in `' /project/app/presenters/carnival/admin_user_presenter.rb:2:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:121:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:115:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:8:in `generate_datatable' /project/app/controllers/carnival/base_admin_controller.rb:17:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.9.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/98325540/variables" for 10.0.2.2 at 2014-07-16 15:04:45 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-16 15:04:55 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (108.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (244.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 746ms (Views: 623.4ms | ActiveRecord: 9.8ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:57 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:57 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:58 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:58 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:04:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:04:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:01 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:02 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:05:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:05:02 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:05:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:05:03 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:05:03 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:05:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:05:04 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523099258" for 10.0.2.2 at 2014-07-16 15:05:04 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523099258"} Carnival::AdminUser Load (2.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 136ms (Views: 124.2ms | ActiveRecord: 6.5ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 15:05:04 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:05:05 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:05:05 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:05:05 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-16 15:06:03 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (123.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (241.7ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 830ms (Views: 628.9ms | ActiveRecord: 11.2ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:05 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:05 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:05 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:06 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:06 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:07 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:07 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:09 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:09 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:10 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:10 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:10 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:06:10 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523167727" for 10.0.2.2 at 2014-07-16 15:06:11 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523167727"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.1ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 152ms (Views: 144.0ms | ActiveRecord: 5.0ms) Started GET "/admin" for 10.0.2.2 at 2014-07-16 15:06:33 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (144.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (278.2ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 766ms (Views: 642.3ms | ActiveRecord: 9.8ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:06:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:39 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:06:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:06:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:06:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:06:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:06:40 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:06:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:06:41 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523196973" for 10.0.2.2 at 2014-07-16 15:06:41 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523196973"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 105ms (Views: 97.9ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 15:06:41 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:06:42 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:06:42 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:06:42 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:07:03 +0000 Started GET "/admin/admin_users/1" for 10.0.2.2 at 2014-07-16 15:07:03 +0000 Processing by Carnival::AdminUsersController#show as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/base_admin/show.html.haml within layouts/carnival/admin (262.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 710ms (Views: 696.5ms | ActiveRecord: 6.9ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:05 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:05 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:05 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:06 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:06 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:06 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:07 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:08 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:09 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:10 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:07:10 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 15:07:10 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523232350" for 10.0.2.2 at 2014-07-16 15:07:12 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523232350"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 120ms (Views: 113.2ms | ActiveRecord: 4.0ms) Started GET "/admin/admin_users/1/edit" for 10.0.2.2 at 2014-07-16 15:07:14 +0000 Processing by Carnival::AdminUsersController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (146.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (520.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (558.1ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (49.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 973ms (Views: 954.4ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:15 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:15 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:16 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:17 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:18 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:19 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:20 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:07:20 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 15:07:21 +0000 Started GET "/admin/admin_users" for 10.0.2.2 at 2014-07-16 15:07:24 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (99.4ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (242.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 587ms (Views: 578.6ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:27 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:29 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:07:31 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 15:07:31 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405523248325" for 10.0.2.2 at 2014-07-16 15:07:32 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405523248325"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 113ms (Views: 105.4ms | ActiveRecord: 4.2ms) Started GET "/admin/countries" for 10.0.2.2 at 2014-07-16 15:07:37 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (107.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (295.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 660ms (Views: 640.7ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:39 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:43 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:43 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:43 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:07:44 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:07:44 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:07:44 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:07:44 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:07:45 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:07:45 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523260885" for 10.0.2.2 at 2014-07-16 15:07:45 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405523260885"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" IN (1) Completed 200 OK in 229ms (Views: 214.9ms | ActiveRecord: 11.1ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:07:45 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:07:46 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:07:46 +0000 Started GET "/admin/countries/1" for 10.0.2.2 at 2014-07-16 15:07:48 +0000 Processing by Admin::CountriesController#show as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/base_admin/show.html.haml within layouts/carnival/admin (120.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 468ms (Views: 456.7ms | ActiveRecord: 6.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:49 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:51 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:51 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:51 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:07:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:53 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:53 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:54 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:54 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:54 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:07:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:07:55 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:07:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:07:55 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:07:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:07:56 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523277768" for 10.0.2.2 at 2014-07-16 15:07:57 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405523277768"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" IN (1) Completed 200 OK in 72ms (Views: 61.1ms | ActiveRecord: 7.4ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:07:58 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-16 15:08:00 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (65.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (168.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (203.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (237.0ms) Completed 500 Internal Server Error in 332ms NoMethodError - undefined method `each' for nil:NilClass: /project/app/models/carnival/field.rb:134:in `get_associate_nested_form_mode' /project/app/models/carnival/field.rb:77:in `nested_form_modes?' /project/app/models/carnival/field.rb:84:in `nested_form_scope' /project/app/view_objects/carnival/nested_form_options.rb:127:in `populate_available_options' /project/app/view_objects/carnival/nested_form_options.rb:14:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:9:in `__project_app_views_carnival_shared_form__nested_form_html_haml___684651319_98833290' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___523324518_93527450' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___523324518_93527450' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___838793924_93410600' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.9.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-631208228/variables" for 10.0.2.2 at 2014-07-16 15:08:00 +0000 Started POST "/__better_errors/-631208228/eval" for 10.0.2.2 at 2014-07-16 15:08:04 +0000 Started POST "/__better_errors/-631208228/eval" for 10.0.2.2 at 2014-07-16 15:08:16 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-16 15:09:16 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Admin::State Load (2.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (153.0ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (111.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (418.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (453.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (489.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1013ms (Views: 884.7ms | ActiveRecord: 22.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:18 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:09:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:09:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:09:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:09:24 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 15:09:24 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 15:09:24 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:09:25 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 15:09:45 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (153.5ms)  (1.7ms) SELECT COUNT(*) FROM "states"  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (90.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (58.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (436.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 789ms (Views: 766.0ms | ActiveRecord: 9.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:47 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:09:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:52 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:52 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:09:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:09:52 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 15:09:52 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523389465" for 10.0.2.2 at 2014-07-16 15:09:53 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405523389465"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 11ms (Views: 3.7ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:09:53 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:09:53 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:09:53 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:09:54 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:09:57 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 15:09:58 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 15:09:59 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405523389466" for 10.0.2.2 at 2014-07-16 15:09:59 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405523389466"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Admin::State Load (3.1ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 166ms (Views: 153.3ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:10:00 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-07-16 15:10:02 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Admin::City Load (3.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (40.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (182.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (395.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (449.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (499.2ms) Completed 500 Internal Server Error in 630ms NoMethodError - undefined method `reflections' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' /project/app/view_objects/carnival/nested_form_options.rb:89:in `scope_column_name' /project/app/view_objects/carnival/nested_form_options.rb:83:in `scope_html_id' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:3:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___143488627_93690950' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:10:in `__project_app_views_carnival_shared_form__nested_form_html_haml___684651319_98833290' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___523324518_93527450' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___523324518_93527450' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___838793924_93410600' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.9.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/87108130/variables" for 10.0.2.2 at 2014-07-16 15:10:03 +0000 Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? [["id", 1]] Started POST "/__better_errors/87108130/variables" for 10.0.2.2 at 2014-07-16 15:10:09 +0000 Started POST "/__better_errors/87108130/variables" for 10.0.2.2 at 2014-07-16 15:10:10 +0000 Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:14 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:19 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:26 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:31 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:33 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:38 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:41 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:43 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:51 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:10:57 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:11:01 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:11:09 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:11:23 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:11:28 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:11:32 +0000 Started POST "/__better_errors/87108130/eval" for 10.0.2.2 at 2014-07-16 15:11:35 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-07-16 15:12:30 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (107.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (364.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (512.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (547.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (582.4ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1066ms (Views: 928.5ms | ActiveRecord: 22.7ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:32 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:32 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:33 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:12:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:35 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:12:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:12:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:12:37 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:12:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:12:38 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 15:12:38 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 15:12:38 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 15:12:38 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:12:39 +0000 Started GET "/admin/cities" for 10.0.2.2 at 2014-07-16 15:13:06 +0000 Processing by Admin::CitiesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::State Load (2.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.3ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (150.0ms)  (1.3ms) SELECT COUNT(*) FROM "cities"  (1.9ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR')  (2.0ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (36.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (336.9ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 729ms (Views: 702.9ms | ActiveRecord: 12.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:07 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:08 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:08 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:12 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:13:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:13:13 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:13:13 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:13:13 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1405523589597" for 10.0.2.2 at 2014-07-16 15:13:13 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1405523589597"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') ORDER BY cities.id asc LIMIT 50 OFFSET 0 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" IN (1, 2) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Completed 200 OK in 270ms (Views: 260.1ms | ActiveRecord: 6.9ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:13:14 +0000 Started GET "/admin/cities/1/edit" for 10.0.2.2 at 2014-07-16 15:13:16 +0000 Processing by Admin::CitiesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Rendered admin/cities/edit.html.haml within layouts/carnival/admin (1.1ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (12.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 350ms (Views: 340.9ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:17 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:13:22 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:13:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:13:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:13:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:13:23 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-07-16 15:13:28 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.9ms) Admin::State Load (1.9ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.3ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (298.1ms)  (1.3ms) SELECT COUNT(*) FROM "people"  (1.2ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.3ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (449.0ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (61.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 876ms (Views: 848.6ms | ActiveRecord: 14.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:13:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:34 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:35 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:13:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:13:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:13:35 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:13:36 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:13:36 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:13:36 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=10&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&mDataProp_9=9&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&sSearch_9=&bRegex_9=false&bSearchable_9=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=true&bSortable_9=false&_=1405523612336" for 10.0.2.2 at 2014-07-16 15:13:36 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"10", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "mDataProp_9"=>"9", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "sSearch_9"=>"", "bRegex_9"=>"false", "bSearchable_9"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"true", "bSortable_9"=>"false", "_"=>"1405523612336"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.5ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 2.7ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:13:38 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-16 15:13:38 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (91.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (548.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (593.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (630.5ms) Completed 500 Internal Server Error in 730ms NoMethodError - undefined method `build' for nil:NilClass: /project/app/views/carnival/shared/form/_nested_form.html.haml:25:in `__project_app_views_carnival_shared_form__nested_form_html_haml___684651319_98833290' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___346197142__623049978' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___523324518_93527450' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___523324518_93527450' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__370706801__631058258' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:59:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:56:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.9.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/74106480/variables" for 10.0.2.2 at 2014-07-16 15:13:40 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:13:45 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:13:49 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:13:53 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:14:07 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:14:15 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:14:25 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:14:32 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:14:37 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:15:12 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:15:22 +0000 Started POST "/__better_errors/74106480/eval" for 10.0.2.2 at 2014-07-16 15:15:27 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-16 15:15:56 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (37.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (171.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (611.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (654.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (688.2ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (10.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1022ms (Views: 1012.5ms | ActiveRecord: 6.8ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:15:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:16:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:16:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:16:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:00 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:02 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:16:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:16:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:16:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 15:16:04 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 15:16:05 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:16:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:16:05 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 15:16:05 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:16:06 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 15:38:10 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (135.9ms)  (1.6ms) SELECT COUNT(*) FROM "states"  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (48.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (339.6ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (52.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 730ms (Views: 716.7ms | ActiveRecord: 10.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:12 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:16 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:17 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:38:17 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 15:38:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 15:38:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 15:38:18 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:38:18 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 15:38:18 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405525094351" for 10.0.2.2 at 2014-07-16 15:38:18 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405525094351"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 12ms (Views: 3.9ms | ActiveRecord: 4.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 15:38:19 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 15:38:19 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:38:19 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:38:19 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 15:38:20 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 15:38:20 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (66.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (166.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (299.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (334.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (375.6ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 734ms (Views: 726.5ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:38:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:38:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:38:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:38:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 15:38:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 15:38:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 15:38:27 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 15:40:33 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (68.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (161.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (300.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (334.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (368.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 701ms (Views: 693.8ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:35 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:40:39 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 15:40:39 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 15:40:52 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (177.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (338.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (374.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (409.0ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (0.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 739ms (Views: 730.6ms | ActiveRecord: 5.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:53 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:40:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:40:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:40:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 15:40:59 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-07-16 15:41:09 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.0ms) Completed 200 OK in 59ms (Views: 1.5ms | ActiveRecord: 4.8ms) Started GET "/admin/people" for 10.0.2.2 at 2014-07-16 15:41:27 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (239.9ms)  (1.4ms) SELECT COUNT(*) FROM "people"  (1.5ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.6ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (389.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (54.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 772ms (Views: 757.3ms | ActiveRecord: 12.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:33 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:33 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:41:34 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 15:41:34 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 15:41:34 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=10&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&mDataProp_9=9&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&sSearch_9=&bRegex_9=false&bSearchable_9=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=true&bSortable_9=false&_=1405525291042" for 10.0.2.2 at 2014-07-16 15:41:35 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"10", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "mDataProp_9"=>"9", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "sSearch_9"=>"", "bRegex_9"=>"false", "bSearchable_9"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"true", "bSortable_9"=>"false", "_"=>"1405525291042"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.4ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 2.9ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 15:41:35 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-16 15:41:37 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (84.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (70.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (105.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (699.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (733.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (770.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1132ms (Views: 1123.9ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 15:41:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 15:41:43 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 15:41:43 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 15:41:44 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 17:14:23 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.1ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (136.1ms)  (1.2ms) SELECT COUNT(*) FROM "states"  (1.9ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (14.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (40.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (327.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (52.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 704ms (Views: 690.3ms | ActiveRecord: 10.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:25 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:29 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:14:30 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 17:14:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 17:14:31 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 17:14:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 17:14:31 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 17:14:31 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405530867164" for 10.0.2.2 at 2014-07-16 17:14:31 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405530867164"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 3.2ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 17:14:32 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 17:14:32 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 17:14:32 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 17:14:32 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:14:33 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 17:14:35 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (4.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (119.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (209.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (389.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (423.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (459.8ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 894ms (Views: 877.6ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:36 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:37 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:37 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:14:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:39 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:39 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:40 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:40 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:40 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:14:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:14:42 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 17:14:42 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 17:14:42 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 17:14:43 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 17:14:43 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 17:14:43 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 17:14:43 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:14:44 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-07-16 17:14:46 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.5ms) Completed 200 OK in 57ms (Views: 1.4ms | ActiveRecord: 3.2ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 17:21:18 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (145.1ms)  (1.2ms) SELECT COUNT(*) FROM "states"  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (64.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (41.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (396.3ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 736ms (Views: 723.7ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:25 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:25 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:21:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 17:21:26 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 17:21:26 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 17:21:26 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 17:21:26 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 17:21:27 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405531282363" for 10.0.2.2 at 2014-07-16 17:21:27 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405531282363"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 12ms (Views: 4.0ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 17:21:27 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 17:21:27 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 17:21:27 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 17:21:28 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 17:21:35 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (179.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (340.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (375.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (409.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 807ms (Views: 798.5ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:37 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:37 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:37 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:21:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:39 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:39 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:40 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:40 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:40 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:40 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:21:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:21:42 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-16 17:21:42 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-16 17:21:42 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:21:43 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-07-16 17:21:45 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.3ms) Completed 200 OK in 49ms (Views: 1.5ms | ActiveRecord: 2.9ms) Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=" for 10.0.2.2 at 2014-07-16 17:21:50 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>""}} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 0 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.8ms) Completed 200 OK in 44ms (Views: 0.4ms | ActiveRecord: 3.1ms) Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405531368390" for 10.0.2.2 at 2014-07-16 17:22:48 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405531368390"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 13ms (Views: 4.3ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:22:49 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 17:22:51 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (180.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (346.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (382.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (418.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 778ms (Views: 768.1ms | ActiveRecord: 6.3ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:53 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:53 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:54 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:22:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:22:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:22:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:22:58 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-07-16 17:23:00 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.9ms) Completed 200 OK in 51ms (Views: 1.6ms | ActiveRecord: 3.0ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 17:23:50 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 49ms SyntaxError - /project/test/dummy/app/presenters/admin/state_presenter.rb:27: syntax error, unexpected =>, expecting keyword_end :depends_on => :country, ^: app/presenters/admin/state_presenter.rb:27:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:121:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:115:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:55:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.9.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92180980/variables" for 10.0.2.2 at 2014-07-16 17:23:51 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 17:24:00 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (2.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (50.2ms) Admin::City Load (2.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (14.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (187.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (382.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (614.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (658.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (699.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (37.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1251ms (Views: 1098.3ms | ActiveRecord: 22.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:02 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:03 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:03 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:04 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:04 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:04 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:05 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:24:08 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:24:08 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-07-16 17:24:32 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (125.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (339.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (549.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (588.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (625.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1118ms (Views: 981.3ms | ActiveRecord: 16.7ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:24:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:24:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:24:39 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:24:40 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-07-16 17:24:43 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.4ms) Completed 200 OK in 67ms (Views: 1.5ms | ActiveRecord: 3.3ms) Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=" for 10.0.2.2 at 2014-07-16 17:24:45 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>""}} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 0 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.6ms) Completed 200 OK in 46ms (Views: 0.4ms | ActiveRecord: 2.8ms) Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-07-16 17:24:47 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.0ms) Completed 200 OK in 70ms (Views: 1.4ms | ActiveRecord: 3.3ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 17:33:09 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (37.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (251.7ms)  (2.2ms) SELECT COUNT(*) FROM "states"  (1.7ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (57.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (409.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (56437.4ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (127.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (41.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (5.8ms) Completed 200 OK in 57995ms (Views: 57691.4ms | ActiveRecord: 20.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:08 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:08 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:10 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:34:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:16 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:16 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 17:34:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:34:17 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532051489" for 10.0.2.2 at 2014-07-16 17:34:17 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405532051489"} Carnival::AdminUser Load (3.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (2.4ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 266ms (Views: 22.5ms | ActiveRecord: 20.1ms) Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 17:34:45 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 17:34:47 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532051490" for 10.0.2.2 at 2014-07-16 17:34:47 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405532051490"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 295110ms (Views: 294925.3ms | ActiveRecord: 21.8ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 17:39:43 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 17:39:54 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (58.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (281.6ms)  (1.6ms) SELECT COUNT(*) FROM "states"  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (36.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (105.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (611.7ms) Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (61.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (26.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1312ms (Views: 1112.7ms | ActiveRecord: 33.6ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:56 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:57 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:57 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:58 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:39:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:39:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:39:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:39:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:39:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:39:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:39:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:01 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:02 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 17:40:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:40:02 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 17:40:02 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 17:40:03 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 17:40:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 17:40:03 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 17:40:04 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532398844" for 10.0.2.2 at 2014-07-16 17:40:04 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405532398844"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 34ms (Views: 17.5ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 17:40:04 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 17:40:05 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 17:40:05 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 17:40:05 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 17:40:06 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 17:40:43 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 17:40:45 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532398845" for 10.0.2.2 at 2014-07-16 17:40:45 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405532398845"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.3ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 555ms (Views: 304.8ms | ActiveRecord: 24.0ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 17:40:46 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 17:41:35 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405532398846" for 10.0.2.2 at 2014-07-16 17:58:13 +0000 NoMethodError - undefined method `ar_admin_user_class' for Carnival::Config:Class: /project/app/models/carnival/admin_user.rb:3:in `' /project/app/models/carnival/admin_user.rb:1:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/dependencies.rb:552:in `get' activesupport (4.1.4) lib/active_support/dependencies.rb:583:in `constantize' devise (3.2.4) lib/devise.rb:297:in `get' devise (3.2.4) lib/devise/mapping.rb:77:in `to' devise (3.2.4) lib/devise/mapping.rb:72:in `modules' devise (3.2.4) lib/devise/mapping.rb:89:in `routes' devise (3.2.4) lib/devise/mapping.rb:156:in `default_used_route' devise (3.2.4) lib/devise/mapping.rb:66:in `initialize' devise (3.2.4) lib/devise.rb:331:in `add_mapping' devise (3.2.4) lib/devise/rails/routes.rb:221:in `block in devise_for' devise (3.2.4) lib/devise/rails/routes.rb:220:in `devise_for' /project/lib/carnival/routes.rb:10:in `block in mount_carnival_at' actionpack (4.1.4) lib/action_dispatch/routing/mapper.rb:757:in `scope' /project/lib/carnival/routes.rb:4:in `mount_carnival_at' config/routes.rb:2:in `block in ' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:337:in `eval_block' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:315:in `draw' config/routes.rb:1:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:241:in `block in load' activesupport (4.1.4) lib/active_support/dependencies.rb:232:in `load_dependency' activesupport (4.1.4) lib/active_support/dependencies.rb:241:in `load' railties (4.1.4) lib/rails/application/routes_reloader.rb:40:in `block in load_paths' railties (4.1.4) lib/rails/application/routes_reloader.rb:40:in `load_paths' railties (4.1.4) lib/rails/application/routes_reloader.rb:16:in `reload!' railties (4.1.4) lib/rails/application/routes_reloader.rb:26:in `block in updater' activesupport (4.1.4) lib/active_support/file_update_checker.rb:75:in `execute' railties (4.1.4) lib/rails/application/routes_reloader.rb:7:in `execute' railties (4.1.4) lib/rails/application/finisher.rb:83:in `block (2 levels) in ' activesupport (4.1.4) lib/active_support/callbacks.rb:438:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:184:in `block in simple' activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.4) lib/active_support/callbacks.rb:185:in `block in simple' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:71:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 17:59:09 +0000 ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 132ms SyntaxError - /project/test/dummy/app/presenters/admin/state_presenter.rb:8: syntax error, unexpected =>, expecting keyword_end :advanced_search => {:operator => :equal} ^: app/presenters/admin/state_presenter.rb:8:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:113:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:8:in `generate_datatable' /project/app/controllers/carnival/base_admin_controller.rb:13:in `index' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__674728318__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__582833132__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/83388860/variables" for 10.0.2.2 at 2014-07-16 17:59:09 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 17:59:21 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (255.1ms)  (2.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (103.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (419.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1039.7ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (64.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (42.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.8ms) Completed 200 OK in 2847ms (Views: 2673.7ms | ActiveRecord: 20.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 17:59:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 17:59:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 17:59:30 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 17:59:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 17:59:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 17:59:31 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 17:59:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 17:59:32 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567604" for 10.0.2.2 at 2014-07-16 17:59:32 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405533567604"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 12ms (Views: 4.3ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 17:59:32 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 17:59:32 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 17:59:33 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 17:59:33 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 17:59:33 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 17:59:34 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 17:59:34 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567605" for 10.0.2.2 at 2014-07-16 17:59:35 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405533567605"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (70.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (24.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (138.5ms) Completed 200 OK in 1037ms (Views: 1026.5ms | ActiveRecord: 6.9ms) Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567606" for 10.0.2.2 at 2014-07-16 18:01:03 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405533567606"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Completed 500 Internal Server Error in 181ms NameError - undefined local variable or method `byebug' for #: /project/app/datatable/carnival/generic_datatable.rb:191:in `sort_direction' /project/app/datatable/carnival/generic_datatable.rb:152:in `fetch_records' /project/app/datatable/carnival/generic_datatable.rb:135:in `records' /project/app/datatable/carnival/generic_datatable.rb:101:in `data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.0.4) lib/active_support/json/encoding.rb:50:in `block in encode' activesupport (4.0.4) lib/active_support/json/encoding.rb:81:in `check_for_circular_references' activesupport (4.0.4) lib/active_support/json/encoding.rb:49:in `encode' activesupport (4.0.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.0.4) lib/active_support/core_ext/object/to_json.rb:16:in `to_json' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:90:in `block in ' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:33:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:30:in `_handle_render_options' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:29:in `block (2 levels) in index' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:191:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:21:in `index' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__674728318__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__582833132__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567607" for 10.0.2.2 at 2014-07-16 18:02:14 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405533567607"} Carnival::AdminUser Load (3.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.9ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (5.9ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 57525ms (Views: 57276.0ms | ActiveRecord: 17.7ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:05:23 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567608" for 10.0.2.2 at 2014-07-16 18:05:32 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"5", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405533567608"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (49.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Admin::Country Load (10.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (145.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (207.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (35.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.6ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (42.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (192.9ms) Completed 200 OK in 1659ms (Views: 1433.5ms | ActiveRecord: 25.7ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:05:36 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405533567609" for 10.0.2.2 at 2014-07-16 18:05:36 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"6", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405533567609"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (42.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (146.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (34.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.7ms) Completed 200 OK in 1029ms (Views: 1013.2ms | ActiveRecord: 6.5ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:07:26 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (233.6ms)  (2.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (156.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (472.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1158.8ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (82.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (56.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (8.7ms) Completed 200 OK in 2545ms (Views: 2516.6ms | ActiveRecord: 16.6ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:07:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:35 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:35 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:07:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:07:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:07:36 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:07:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:07:37 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:07:37 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:07:37 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534052184" for 10.0.2.2 at 2014-07-16 18:07:37 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534052184"} Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 36ms (Views: 14.8ms | ActiveRecord: 6.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:07:38 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:07:38 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:07:38 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:07:38 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 18:07:39 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 18:07:39 +0000 Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 18:07:39 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534052185" for 10.0.2.2 at 2014-07-16 18:07:40 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534052185"} Carnival::AdminUser Load (7.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (3.0ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (47.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Admin::Country Load (2.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (155.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (146.8ms) Completed 200 OK in 1127ms (Views: 1047.9ms | ActiveRecord: 15.2ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:07:41 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:13:29 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534052186" for 10.0.2.2 at 2014-07-16 18:19:25 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534052186"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (35.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (175.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (33.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (177.0ms) Completed 200 OK in 1149ms (Views: 1133.5ms | ActiveRecord: 6.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:19:27 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (179.9ms)  (1.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (114.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (119.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (676.7ms) Carnival::AdminUserNotification Load (2.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (24.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (82.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1209ms (Views: 1184.8ms | ActiveRecord: 13.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:28 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:19:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:34 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:34 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:19:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:19:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:19:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:19:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:19:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:19:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:19:36 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534771310" for 10.0.2.2 at 2014-07-16 18:19:36 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534771310"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (7.9ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 43ms (Views: 19.7ms | ActiveRecord: 12.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:19:36 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:19:36 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:19:37 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:19:37 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 18:19:37 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:19:37 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:20:17 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (56.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (230.9ms)  (1.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (4.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (60.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (117.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (671.7ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1185ms (Views: 1160.1ms | ActiveRecord: 15.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:19 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:23 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:24 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:24 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:20:25 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534821650" for 10.0.2.2 at 2014-07-16 18:20:25 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534821650"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 39ms (Views: 17.8ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 18:20:31 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 18:20:32 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534821651" for 10.0.2.2 at 2014-07-16 18:20:33 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534821651"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (2.3ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (158.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (94.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (159.4ms) Completed 200 OK in 1167ms (Views: 1148.7ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:20:34 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:20:45 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.7ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (193.2ms)  (1.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (52.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (181.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (612.0ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (19.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (31.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1076ms (Views: 1053.0ms | ActiveRecord: 12.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:20:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:52 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:52 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:20:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:20:52 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:29:24 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (175.5ms)  (1.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (52.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (120.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (742.0ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (22.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1261ms (Views: 1234.6ms | ActiveRecord: 12.9ms) Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405534849221" for 10.0.2.2 at 2014-07-16 18:29:25 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405534849221"} Carnival::AdminUser Load (3.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 34ms (Views: 16.3ms | ActiveRecord: 6.7ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:29:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:31 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:29:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:29:32 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:29:32 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:29:32 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:29:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:29:33 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:29:33 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:29:33 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 18:29:34 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:29:35 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:29:35 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:29:35 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405535368771" for 10.0.2.2 at 2014-07-16 18:29:35 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405535368771"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (2.3ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 32ms (Views: 15.6ms | ActiveRecord: 6.4ms) Started GET "/assets/carnival/cal.png" for 10.0.2.2 at 2014-07-16 18:29:37 +0000 Started GET "/assets/carnival/search-button.png" for 10.0.2.2 at 2014-07-16 18:29:38 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-14&to=2014-07-20&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405535368772" for 10.0.2.2 at 2014-07-16 18:29:40 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-14", "to"=>"2014-07-20", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405535368772"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') Admin::State Load (2.5ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-14 00:00:00' and '2014-07-20 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.9ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (170.0ms) Completed 200 OK in 1121ms (Views: 1102.7ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:29:42 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:37:09 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (176.2ms)  (1.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (53.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (118.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (597.6ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (21.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1066ms (Views: 1042.6ms | ActiveRecord: 12.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:37:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:16 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:17 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:37:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:37:17 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:37:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:37:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:37:18 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:37:18 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:37:18 +0000 Started GET "/admin/states.json?scope=all&from=2014-07-16&to=2014-07-16&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405535833944" for 10.0.2.2 at 2014-07-16 18:37:19 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-16", "to"=>"2014-07-16", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405535833944"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE (states.created_at between '2014-07-16 00:00:00' and '2014-07-16 23:59:59') ORDER BY states.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 31ms (Views: 14.9ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:37:19 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:37:19 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:37:19 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:37:19 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-16 18:37:20 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:42:17 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:42:22 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-16 18:42:24 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (120.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (283.2ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (15.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (74.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 778ms (Views: 752.8ms | ActiveRecord: 5.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:27 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:42:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:29 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:31 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:42:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:42:31 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536148265" for 10.0.2.2 at 2014-07-16 18:42:32 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536148265"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.2ms) Completed 200 OK in 562ms (Views: 546.5ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:42:32 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:43:05 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (62.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (234.3ms)  (1.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (52.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (521.8ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (55.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.7ms) Completed 200 OK in 1219ms (Views: 1023.9ms | ActiveRecord: 27.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:08 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:09 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:10 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:43:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:13 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:13 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:14 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:14 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:43:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:43:14 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536191491" for 10.0.2.2 at 2014-07-16 18:43:15 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536191491"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (230.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.3ms) Completed 200 OK in 1217ms (Views: 1198.3ms | ActiveRecord: 7.6ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:43:16 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:45:38 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.2ms) Admin::Country Load (2.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (65.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (265.9ms)  (1.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (54.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (573.0ms) Carnival::AdminUserNotification Load (3.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (85.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1527ms (Views: 1282.8ms | ActiveRecord: 32.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:43 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:43 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:44 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:44 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:45:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:46 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:47 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:48 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:48 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:45:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:45:48 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:45:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:45:49 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:45:49 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:45:49 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:45:50 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536345025" for 10.0.2.2 at 2014-07-16 18:45:50 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536345025"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.5ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (47.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.1ms) Completed 200 OK in 1218ms (Views: 1199.5ms | ActiveRecord: 8.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:45:51 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:45:51 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:45:52 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:45:52 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:46:25 +0000 ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (270.0ms)  (1.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (65.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (562.4ms) Carnival::AdminUserNotification Load (2.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (65.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.9ms) Completed 200 OK in 1664ms (Views: 1446.7ms | ActiveRecord: 18.6ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:28 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:28 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:29 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:29 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:46:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:33 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:33 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:46:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:46:34 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:46:34 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:46:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:46:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:46:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:46:35 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536390756" for 10.0.2.2 at 2014-07-16 18:46:35 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536390756"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.4ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (42.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (56.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (161.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (35.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) CACHE (0.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (144.6ms) Completed 200 OK in 38678ms (Views: 38663.0ms | ActiveRecord: 11.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:47:14 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:47:14 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:47:15 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:47:15 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:47:44 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (55.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (234.6ms)  (2.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (95.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (506.2ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (52.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (27.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 1160ms (Views: 980.9ms | ActiveRecord: 32.9ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:47:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:48 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:49 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:47:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:53 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:53 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:47:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:47:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:47:54 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:47:54 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:47:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:47:55 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:47:55 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536470792" for 10.0.2.2 at 2014-07-16 18:47:55 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536470792"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (155.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (42.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.0ms) Completed 200 OK in 1124ms (Views: 1106.1ms | ActiveRecord: 7.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:47:57 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:47:57 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:47:57 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:47:57 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:48:14 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (176.4ms)  (2.0ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (51.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (474.8ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (24.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 1018ms (Views: 993.8ms | ActiveRecord: 13.1ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:16 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:16 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:17 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:18 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:20 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:20 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:21 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:48:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:48:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:48:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:48:22 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:48:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:48:22 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536497980" for 10.0.2.2 at 2014-07-16 18:48:23 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536497980"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (114.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.7ms) Completed 200 OK in 1137ms (Views: 1119.9ms | ActiveRecord: 7.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:48:24 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:48:24 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:48:24 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:48:25 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:48:25 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:48:31 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.1ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (197.5ms)  (1.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (3.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (124.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (589.3ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.3ms) Completed 200 OK in 1059ms (Views: 1031.8ms | ActiveRecord: 16.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:34 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:35 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:35 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:48:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:35 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:37 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:38 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:48:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:48:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:48:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:48:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:48:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:48:40 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:48:40 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515979" for 10.0.2.2 at 2014-07-16 18:48:41 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515979"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.5ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (157.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) CACHE (0.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.8ms) Completed 200 OK in 1086ms (Views: 1065.4ms | ActiveRecord: 8.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:48:42 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:48:42 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:48:42 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:48:43 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515980" for 10.0.2.2 at 2014-07-16 18:48:44 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515980"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (57.2ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (166.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (155.4ms) Completed 200 OK in 1160ms (Views: 1141.5ms | ActiveRecord: 8.1ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:48:45 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515981" for 10.0.2.2 at 2014-07-16 18:48:46 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515981"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (62.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.5ms) Completed 200 OK in 1124ms (Views: 1104.4ms | ActiveRecord: 7.8ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:48:47 +0000 Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515982" for 10.0.2.2 at 2014-07-16 18:48:48 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515982"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (43.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.5ms) Completed 200 OK in 1069ms (Views: 1049.6ms | ActiveRecord: 8.0ms) Started GET "/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515983" for 10.0.2.2 at 2014-07-16 18:48:50 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"5", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515983"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.3ms) Completed 200 OK in 1136ms (Views: 1117.8ms | ActiveRecord: 7.5ms) Started GET "/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515984" for 10.0.2.2 at 2014-07-16 18:48:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"6", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515984"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (64.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (157.4ms) Completed 200 OK in 1132ms (Views: 1114.1ms | ActiveRecord: 7.4ms) Started GET "/admin/states.json?scope=all&sEcho=7&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515985" for 10.0.2.2 at 2014-07-16 18:49:13 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"7", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515985"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.1ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (52.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (81.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (167.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (147.1ms) Completed 200 OK in 51386ms (Views: 51208.2ms | ActiveRecord: 17.6ms) Started GET "/admin/states.json?scope=all&sEcho=8&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536515986" for 10.0.2.2 at 2014-07-16 18:50:08 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"8", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536515986"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.2ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (34.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (143.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (96.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (142.3ms) Completed 200 OK in 34133ms (Views: 34117.6ms | ActiveRecord: 6.7ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:50:54 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (176.3ms)  (2.0ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (56.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (541.8ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (56.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1045ms (Views: 1016.9ms | ActiveRecord: 16.4ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:57 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:57 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:57 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:57 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:58 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:50:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:50:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:50:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:50:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:50:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:50:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:01 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:02 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:51:02 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:51:03 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:51:03 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659016" for 10.0.2.2 at 2014-07-16 18:51:03 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536659016"} Carnival::AdminUser Load (3.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (94.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (162.3ms) Completed 200 OK in 6818ms (Views: 6792.5ms | ActiveRecord: 9.3ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:51:10 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:51:11 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:51:11 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:51:11 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:51:11 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:51:12 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:51:12 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:51:15 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659017" for 10.0.2.2 at 2014-07-16 18:51:17 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536659017"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (85.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (43.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (53.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (147.5ms) Completed 200 OK in 1392ms (Views: 1209.1ms | ActiveRecord: 19.6ms) Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659018" for 10.0.2.2 at 2014-07-16 18:51:20 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536659018"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.1ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (147.6ms) Completed 200 OK in 1074ms (Views: 1054.7ms | ActiveRecord: 8.1ms) Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536659019" for 10.0.2.2 at 2014-07-16 18:51:22 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536659019"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.5ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (163.1ms) Completed 200 OK in 1137ms (Views: 1116.9ms | ActiveRecord: 8.8ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:51:25 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (175.5ms)  (1.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (54.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (476.1ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (54.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 992ms (Views: 964.8ms | ActiveRecord: 15.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:51:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:30 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:32 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:51:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:51:33 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:51:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:51:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:51:33 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:51:34 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:51:34 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689560" for 10.0.2.2 at 2014-07-16 18:51:34 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536689560"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (96.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (155.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (73.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.7ms) Completed 200 OK in 1197ms (Views: 1178.4ms | ActiveRecord: 7.5ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:51:36 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:51:36 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:51:36 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:51:36 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689561" for 10.0.2.2 at 2014-07-16 18:51:37 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536689561"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.6ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (91.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.6ms) Completed 200 OK in 1135ms (Views: 1115.0ms | ActiveRecord: 8.6ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:51:38 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689562" for 10.0.2.2 at 2014-07-16 18:51:39 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536689562"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (147.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (159.4ms) Completed 200 OK in 1069ms (Views: 1050.4ms | ActiveRecord: 7.9ms) Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536689563" for 10.0.2.2 at 2014-07-16 18:51:53 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536689563"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.3ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (167.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (155.0ms) Completed 200 OK in 1176ms (Views: 1154.7ms | ActiveRecord: 8.7ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:53:02 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Admin::Country Load (3.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (78.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (250.1ms)  (2.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (55.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (495.2ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (58.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1347ms (Views: 1026.1ms | ActiveRecord: 32.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:06 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:11 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:53:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:53:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:53:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:53:13 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:53:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:53:13 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536788976" for 10.0.2.2 at 2014-07-16 18:53:14 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536788976"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (75.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (161.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (169.0ms) Completed 200 OK in 1243ms (Views: 1224.4ms | ActiveRecord: 7.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:53:15 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:53:15 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:53:16 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:53:16 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536788977" for 10.0.2.2 at 2014-07-16 18:53:16 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536788977"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.2ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (85.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (159.9ms) Completed 200 OK in 1154ms (Views: 1135.5ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:53:18 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536788978" for 10.0.2.2 at 2014-07-16 18:53:18 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536788978"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (22.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (166.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.0ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.9ms) Completed 200 OK in 1088ms (Views: 1069.3ms | ActiveRecord: 7.5ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:53:41 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (72.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (243.7ms)  (2.1ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (109.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (549.8ms) Carnival::AdminUserNotification Load (4.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (65.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 1216ms (Views: 1025.8ms | ActiveRecord: 32.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:44 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:45 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:53:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:50 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:50 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:53:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:53:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:53:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:53:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:53:51 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:53:52 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:53:52 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536827461" for 10.0.2.2 at 2014-07-16 18:53:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536827461"} Carnival::AdminUser Load (2.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.1ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (165.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (178.6ms) Completed 200 OK in 1144ms (Views: 1125.1ms | ActiveRecord: 8.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:53:54 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:53:54 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:53:54 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:53:54 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536827462" for 10.0.2.2 at 2014-07-16 18:53:55 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536827462"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.8ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (160.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (163.8ms) Completed 200 OK in 1182ms (Views: 1162.1ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:53:56 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536827463" for 10.0.2.2 at 2014-07-16 18:53:57 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536827463"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.3ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (44.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (62.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.5ms) Completed 200 OK in 1152ms (Views: 1132.2ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:54:03 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:54:04 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (206.5ms)  (1.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (64.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (622.7ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (21.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1165ms (Views: 1140.0ms | ActiveRecord: 13.3ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:05 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:06 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:07 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:08 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:09 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:11 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:54:11 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:54:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:54:12 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:54:12 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:54:13 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:54:13 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848309" for 10.0.2.2 at 2014-07-16 18:54:13 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848309"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (76.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (161.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.0ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.5ms) Completed 200 OK in 1150ms (Views: 1132.0ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:54:14 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:54:15 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:54:15 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:54:15 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848310" for 10.0.2.2 at 2014-07-16 18:54:16 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848310"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (42.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (40.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (71.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.2ms) Completed 200 OK in 1205ms (Views: 1187.0ms | ActiveRecord: 7.6ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:54:18 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848311" for 10.0.2.2 at 2014-07-16 18:54:18 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848311"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.6ms) Completed 200 OK in 1067ms (Views: 1045.5ms | ActiveRecord: 7.8ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:54:20 +0000 Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848312" for 10.0.2.2 at 2014-07-16 18:54:20 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848312"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (111.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (22.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (164.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) CACHE (0.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (164.3ms) Completed 200 OK in 1185ms (Views: 1165.2ms | ActiveRecord: 7.6ms) Started GET "/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848313" for 10.0.2.2 at 2014-07-16 18:54:22 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"5", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848313"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.6ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (50.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.4ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (147.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.4ms) Completed 200 OK in 1148ms (Views: 1127.5ms | ActiveRecord: 8.4ms) Started GET "/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848314" for 10.0.2.2 at 2014-07-16 18:54:25 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"6", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848314"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (3.1ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (164.8ms) Completed 200 OK in 1086ms (Views: 1062.2ms | ActiveRecord: 8.9ms) Started GET "/admin/states.json?scope=all&sEcho=7&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536848315" for 10.0.2.2 at 2014-07-16 18:54:27 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"7", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536848315"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (86.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (185.2ms) Completed 200 OK in 1152ms (Views: 1133.0ms | ActiveRecord: 7.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:54:31 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (179.4ms)  (2.0ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (62.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (487.1ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (31.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 972ms (Views: 942.9ms | ActiveRecord: 17.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:54:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:37 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:38 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:54:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:54:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:54:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:54:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:54:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:54:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:54:39 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536874885" for 10.0.2.2 at 2014-07-16 18:54:40 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536874885"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.1ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.6ms) Completed 200 OK in 1180ms (Views: 1161.1ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:54:41 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:54:41 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:54:41 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:54:42 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:55:00 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 252ms SyntaxError - /project/test/dummy/app/presenters/admin/state_presenter.rb:10: syntax error, unexpected '=', expecting keyword_end :sortable =: true, ^ /project/test/dummy/app/presenters/admin/state_presenter.rb:10: Can't assign to true /project/test/dummy/app/presenters/admin/state_presenter.rb:11: syntax error, unexpected =>, expecting :: or '[' or '.' :actions => [:index, :new, :edit, :show], ^ /project/test/dummy/app/presenters/admin/state_presenter.rb:11: syntax error, unexpected ',', expecting keyword_end /project/test/dummy/app/presenters/admin/state_presenter.rb:12: Can't assign to true /project/test/dummy/app/presenters/admin/state_presenter.rb:13: syntax error, unexpected =>, expecting :: or '[' or '.' :advanced_search => {:operator => :like} ^ /project/test/dummy/app/presenters/admin/state_presenter.rb:15: syntax error, unexpected '=', expecting keyword_end :sortable =: true, ^ /project/test/dummy/app/presenters/admin/state_presenter.rb:15: Can't assign to true /project/test/dummy/app/presenters/admin/state_presenter.rb:16: syntax error, unexpected =>, expecting :: or '[' or '.' :actions => [:index, :new, :edit, :show], ^ /project/test/dummy/app/presenters/admin/state_presenter.rb:16: syntax error, unexpected ',', expecting keyword_end /project/test/dummy/app/presenters/admin/state_presenter.rb:17: Can't assign to true /project/test/dummy/app/presenters/admin/state_presenter.rb:18: syntax error, unexpected =>, expecting :: or '[' or '.' :advanced_search => {:operator => :like} ^: app/presenters/admin/state_presenter.rb:10:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:113:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:8:in `generate_datatable' /project/app/controllers/carnival/base_admin_controller.rb:13:in `index' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__595966049__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__532736329__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/91345180/variables" for 10.0.2.2 at 2014-07-16 18:55:03 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:55:20 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (62.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (236.1ms)  (1.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (55.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (545.8ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (56.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (34.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.8ms) Completed 200 OK in 1221ms (Views: 1033.1ms | ActiveRecord: 29.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:23 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:24 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:24 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:25 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:25 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:55:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:26 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:27 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:27 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:28 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:29 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:29 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:55:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:55:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:55:30 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:55:30 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:55:30 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:55:31 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:55:31 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926588" for 10.0.2.2 at 2014-07-16 18:55:31 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926588"} Carnival::AdminUser Load (5.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (3.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (40.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (161.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.8ms) Completed 200 OK in 1219ms (Views: 1198.8ms | ActiveRecord: 12.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:55:33 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:55:33 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:55:33 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:55:33 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926589" for 10.0.2.2 at 2014-07-16 18:55:36 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926589"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.6ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) CACHE (0.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.1ms) Completed 200 OK in 1144ms (Views: 1122.8ms | ActiveRecord: 8.5ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:55:38 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926590" for 10.0.2.2 at 2014-07-16 18:55:39 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926590"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.7ms) Completed 200 OK in 1138ms (Views: 1119.6ms | ActiveRecord: 7.7ms) Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926591" for 10.0.2.2 at 2014-07-16 18:55:41 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926591"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.name desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.0ms) Completed 200 OK in 1081ms (Views: 1061.2ms | ActiveRecord: 8.1ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:55:42 +0000 Started GET "/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926592" for 10.0.2.2 at 2014-07-16 18:55:43 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"5", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926592"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (4.9ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Admin::Country Load (2.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (163.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.4ms) Completed 200 OK in 1178ms (Views: 1155.8ms | ActiveRecord: 11.5ms) Started GET "/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926593" for 10.0.2.2 at 2014-07-16 18:55:45 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"6", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926593"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (52.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (2.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (148.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.7ms) Completed 200 OK in 1119ms (Views: 1098.7ms | ActiveRecord: 9.4ms) Started GET "/admin/states.json?scope=all&sEcho=7&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926594" for 10.0.2.2 at 2014-07-16 18:55:47 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"7", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926594"} Carnival::AdminUser Load (3.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.code asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (149.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.8ms) Completed 200 OK in 1084ms (Views: 1058.3ms | ActiveRecord: 9.4ms) Started GET "/admin/states.json?scope=all&sEcho=8&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536926595" for 10.0.2.2 at 2014-07-16 18:55:48 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"8", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536926595"} Carnival::AdminUser Load (2.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.2ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (150.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (108.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (146.0ms) Completed 200 OK in 1154ms (Views: 1130.1ms | ActiveRecord: 8.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:55:57 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.2ms) Admin::Country Load (2.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (64.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (296.0ms)  (1.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (54.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (553.0ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (56.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (91.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.8ms) Completed 200 OK in 1278ms (Views: 1090.8ms | ActiveRecord: 27.9ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 18:56:01 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:01 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:01 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:05 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:05 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:05 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:08 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:08 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:56:08 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:56:09 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:56:09 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:56:09 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:56:09 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:56:10 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536964987" for 10.0.2.2 at 2014-07-16 18:56:10 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536964987"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (36.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (90.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.0ms) Completed 200 OK in 1180ms (Views: 1161.6ms | ActiveRecord: 7.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:56:11 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:56:11 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:56:12 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:56:12 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:56:20 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (63.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (67.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (304.2ms)  (1.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (56.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (556.6ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (56.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (90.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 1272ms (Views: 1087.8ms | ActiveRecord: 31.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:24 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:25 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:25 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:56:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:27 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:29 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:56:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:56:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:56:30 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:56:31 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:56:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:56:31 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:56:31 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405536986934" for 10.0.2.2 at 2014-07-16 18:56:32 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405536986934"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (152.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (153.8ms) Completed 200 OK in 1205ms (Views: 1186.2ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:56:33 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:56:33 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:56:33 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:56:34 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:57:01 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (65.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (317.4ms)  (3.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (3.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (67.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (598.3ms) Carnival::AdminUserNotification Load (4.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (75.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (88.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.7ms) Completed 200 OK in 1389ms (Views: 1183.2ms | ActiveRecord: 36.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:05 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:05 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:05 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:06 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:07 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:08 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:09 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:10 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:10 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:57:11 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:57:11 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:57:11 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:57:12 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:57:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:57:12 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537027831" for 10.0.2.2 at 2014-07-16 18:57:12 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405537027831"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.5ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (40.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (152.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (222.2ms) Completed 200 OK in 1202ms (Views: 1184.3ms | ActiveRecord: 7.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:57:14 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:57:14 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:57:14 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:57:15 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 18:57:25 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (66.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (304.1ms)  (2.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (55.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (546.9ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (64.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1292ms (Views: 1096.2ms | ActiveRecord: 28.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:29 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 18:57:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:34 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:34 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 18:57:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 18:57:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 18:57:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 18:57:35 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 18:57:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 18:57:36 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 18:57:36 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537051394" for 10.0.2.2 at 2014-07-16 18:57:36 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405537051394"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (37.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (157.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (151.5ms) Completed 200 OK in 1130ms (Views: 1111.9ms | ActiveRecord: 7.6ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 18:57:37 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 18:57:38 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 18:57:38 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 18:57:38 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 18:58:12 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537051395" for 10.0.2.2 at 2014-07-16 18:58:13 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405537051395"} Carnival::AdminUser Load (10.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (8.4ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (202.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.5ms) Admin::Country Load (5.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (70.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (32.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (633.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (137.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.6ms) CACHE (0.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (52.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (574.2ms) Completed 200 OK in 4344ms (Views: 4270.6ms | ActiveRecord: 33.2ms) Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537051396" for 10.0.2.2 at 2014-07-16 18:58:19 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405537051396"} Carnival::AdminUser Load (7.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.8ms) SELECT "states".* FROM "states" ORDER BY states.name desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (137.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.9ms) Admin::Country Load (7.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (68.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (608.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (141.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.9ms) CACHE (0.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (60.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (599.0ms) Completed 200 OK in 4275ms (Views: 4211.7ms | ActiveRecord: 27.3ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 18:58:24 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:01:20 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (8.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.1ms) Admin::Country Load (8.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (60.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (935.8ms)  (45.0ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (9.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (10.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (530.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (3.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2554.4ms) Carnival::AdminUserNotification Load (6.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (82.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (125.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.5ms) Completed 200 OK in 4543ms (Views: 4402.4ms | ActiveRecord: 96.8ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:28 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:35 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:01:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:48 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:49 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:50 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:01:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:53 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:01:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:01:55 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:01:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:01:57 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:01:57 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (11.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.6ms) Admin::Country Load (7.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (40.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (710.4ms)  (7.2ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (377.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1994.5ms) Carnival::AdminUserNotification Load (6.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (9.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (130.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (220.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.1ms) Completed 200 OK in 4245ms (Views: 4137.2ms | ActiveRecord: 57.2ms) Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:02:03 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:05 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:08 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:19 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:20 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:02:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:02:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:02:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:02:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:02:26 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 19:02:27 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537338099" for 10.0.2.2 at 2014-07-16 19:02:27 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405537338099"} Carnival::AdminUser Load (8.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (154.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.8ms) Admin::Country Load (8.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (85.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (43.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (633.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (167.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.3ms) CACHE (0.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (74.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (40.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (680.9ms) Completed 200 OK in 4715ms (Views: 4631.7ms | ActiveRecord: 33.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 19:02:33 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 19:02:34 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 19:02:35 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:02:36 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 19:02:37 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:02:39 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (9.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.9ms) Admin::Country Load (6.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (32.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (738.3ms)  (5.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (9.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (255.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (2.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2038.5ms) Carnival::AdminUserNotification Load (8.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (108.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (133.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.5ms) Completed 200 OK in 4212ms (Views: 4110.9ms | ActiveRecord: 56.4ms) Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:02:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:02:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:01 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:07 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:08 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:03:10 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:03:11 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:03:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:03:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:03:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 19:03:15 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:03:16 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 19:03:17 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:15:22 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (8.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.2ms) Admin::Country Load (6.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (37.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (727.2ms)  (6.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (238.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (3.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2045.1ms) Carnival::AdminUserNotification Load (6.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (83.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (126.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.2ms) Completed 200 OK in 4165ms (Views: 4069.6ms | ActiveRecord: 47.8ms) Started GET "/assets/carnival/fonts/opensans-regular-webfont.svg" for 10.0.2.2 at 2014-07-16 19:15:27 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 19:15:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:15:29 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:15:30 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 19:15:31 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405537376001" for 10.0.2.2 at 2014-07-16 19:15:32 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405537376001"} Carnival::AdminUser Load (8.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.9ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (298.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.2ms) Admin::Country Load (6.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (85.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (49.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (624.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (148.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.9ms) CACHE (0.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (79.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (633.1ms) Completed 200 OK in 4555ms (Views: 4476.2ms | ActiveRecord: 29.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:39 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:15:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:54 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:15:59 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:00 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:01 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:16:02 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:16:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:16:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:16:06 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:16:07 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 19:16:08 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 19:16:09 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:16:23 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (20.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.9ms) Admin::Country Load (6.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (988.5ms)  (6.5ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (219.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2196.8ms) Carnival::AdminUserNotification Load (6.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (86.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (291.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (3.0ms) Completed 200 OK in 4306ms (Views: 4203.3ms | ActiveRecord: 52.5ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 19:16:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:33 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:34 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:16:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:52 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:16:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:16:54 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:18:06 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (14.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (14.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.9ms) Admin::Country Load (7.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (40.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (785.8ms)  (6.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (9.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (244.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (2.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2461.7ms) Carnival::AdminUserNotification Load (8.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (104.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (175.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.8ms) Completed 200 OK in 4777ms (Views: 4657.1ms | ActiveRecord: 59.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:15 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:18:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:35 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:36 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:18:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:18:38 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:19:24 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (9.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (15.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (169.4ms) Admin::Country Load (6.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (928.5ms)  (6.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (214.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2154.7ms) Carnival::AdminUserNotification Load (6.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (7.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (84.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (131.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.3ms) Completed 200 OK in 4089ms (Views: 3987.7ms | ActiveRecord: 51.4ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:19:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:52 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:19:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:19:54 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:20:10 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (11.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.9ms) Admin::Country Load (10.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (56.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (872.8ms)  (6.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (9.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (292.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2050.2ms) Carnival::AdminUserNotification Load (7.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (111.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (374.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (3.4ms) Completed 200 OK in 4648ms (Views: 4532.6ms | ActiveRecord: 58.7ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:17 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:24 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:25 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:20:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:30 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:39 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:40 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:20:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:20:41 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:29:00 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (8.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (37.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (29.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (20.2ms) Admin::Country Load (7.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (312.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (1401.9ms)  (10.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (9.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (255.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (3.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2720.3ms) Carnival::AdminUserNotification Load (8.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (243.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (297.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.2ms) Completed 200 OK in 5919ms (Views: 5064.9ms | ActiveRecord: 123.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:17 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:25 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:29:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:39 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:40 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:29:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:29:42 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:30:02 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (13.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (16.0ms) Admin::Country Load (8.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (42.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (867.9ms)  (8.1ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (10.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (309.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2061.1ms) Carnival::AdminUserNotification Load (6.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (9.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (106.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (142.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.3ms) Completed 200 OK in 4601ms (Views: 4482.6ms | ActiveRecord: 62.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:30:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:27 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:32 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:33 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:30:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:30:35 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:31:47 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (9.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.4ms) Admin::Country Load (7.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (38.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (730.6ms)  (5.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (46.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (423.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2176.8ms) Carnival::AdminUserNotification Load (6.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (9.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (84.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (124.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.7ms) Completed 200 OK in 4126ms (Views: 3980.5ms | ActiveRecord: 92.9ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:55 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:56 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:31:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:32:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:32:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:32:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:32:03 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:07 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:18 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:19 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:32:20 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:32:21 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:32:55 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.7ms) Admin::Country Load (6.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (27.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (671.0ms)  (5.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (181.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1972.0ms) Carnival::AdminUserNotification Load (8.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (73.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (89.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.1ms) Completed 200 OK in 3853ms (Views: 3778.3ms | ActiveRecord: 45.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:02 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:03 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:05 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:33:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:17 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:18 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:24 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:25 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:33:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:33:27 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 19:33:43 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 19:33:44 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:33:45 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 19:33:46 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539193254" for 10.0.2.2 at 2014-07-16 19:33:47 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539193254"} Carnival::AdminUser Load (6.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (11.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (162.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.9ms) Admin::Country Load (7.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (97.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (159.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (673.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (397.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.9ms) CACHE (0.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (83.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (44.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (689.9ms) Completed 200 OK in 5127ms (Views: 5047.0ms | ActiveRecord: 34.6ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:33:53 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:36:04 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (13.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (19.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.3ms) Admin::Country Load (7.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (48.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (864.9ms)  (7.1ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (9.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (250.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2523.9ms) Carnival::AdminUserNotification Load (7.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (121.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (203.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.5ms) Completed 200 OK in 4850ms (Views: 4729.1ms | ActiveRecord: 61.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:14 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:17 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:36:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:27 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:33 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:34 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:36:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:36:36 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:37:20 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (8.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.6ms) Admin::Country Load (9.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (38.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (725.1ms)  (8.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (10.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (255.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2210.6ms) Carnival::AdminUserNotification Load (8.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (132.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (295.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.6ms) Completed 200 OK in 4380ms (Views: 4264.8ms | ActiveRecord: 63.6ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:37:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:45 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:48 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:49 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:37:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:37:51 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539457811" for 10.0.2.2 at 2014-07-16 19:37:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539457811"} Carnival::AdminUser Load (8.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (9.7ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (149.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.2ms) Admin::Country Load (7.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (76.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (41.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (589.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (146.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) CACHE (0.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (69.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (43.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (589.8ms) Completed 200 OK in 4250ms (Views: 4152.8ms | ActiveRecord: 33.2ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:38:20 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.3ms) Admin::Country Load (6.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (32.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (944.1ms)  (5.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (11.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (178.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1854.9ms) Carnival::AdminUserNotification Load (5.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (7.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (68.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (322.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.5ms) Completed 200 OK in 3977ms (Views: 3882.5ms | ActiveRecord: 51.5ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 19:38:24 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:33 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:38:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:48 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:49 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:38:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:38:51 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539517905" for 10.0.2.2 at 2014-07-16 19:39:22 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539517905"} Carnival::AdminUser Load (6.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (8.2ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (146.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.9ms) Admin::Country Load (8.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (86.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (31.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (616.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (149.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) CACHE (0.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (54.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (33.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (610.4ms) Completed 200 OK in 4236ms (Views: 4172.8ms | ActiveRecord: 30.3ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 19:39:53 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:40:01 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (12.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (22.3ms) Admin::Country Load (7.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (38.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (1181.6ms)  (7.5ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (309.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2383.0ms) Carnival::AdminUserNotification Load (10.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (7.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (128.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (213.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.5ms) Completed 200 OK in 4879ms (Views: 4742.8ms | ActiveRecord: 61.6ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:08 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:10 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:16 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:40:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:31 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:40:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:40:34 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539620973" for 10.0.2.2 at 2014-07-16 19:41:19 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539620973"} Carnival::AdminUser Load (6.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.1ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (150.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.8ms) Admin::Country Load (7.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (68.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (32.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (598.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (161.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.6ms) CACHE (0.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (51.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (640.3ms) Completed 200 OK in 4305ms (Views: 4247.5ms | ActiveRecord: 27.3ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:42:29 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.5ms) Admin::Country Load (6.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (1039.3ms)  (6.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (16.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (238.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2373.8ms) Carnival::AdminUserNotification Load (6.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (10.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (87.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (289.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.6ms) Completed 200 OK in 4471ms (Views: 4364.2ms | ActiveRecord: 60.7ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:42:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:37 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:41 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:42:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:54 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:57 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:42:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:43:00 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:43:01 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539766747" for 10.0.2.2 at 2014-07-16 19:43:03 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539766747"} Carnival::AdminUser Load (16.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (10.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (12.6ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (229.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.9ms) Admin::Country Load (7.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (102.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (58.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (816.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (175.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.0ms) CACHE (0.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (103.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (54.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (754.2ms) Completed 200 OK in 5320ms (Views: 5166.1ms | ActiveRecord: 46.7ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:43:09 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 19:43:10 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:43:45 +0000 ActiveRecord::SchemaMigration Load (5.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.8ms) Admin::Country Load (5.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (136.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (949.7ms)  (5.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (289.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (17.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2103.9ms) Carnival::AdminUserNotification Load (8.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (7.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (312.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (36.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (7.2ms) Completed 200 OK in 6604ms (Views: 5687.9ms | ActiveRecord: 71.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:43:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:43:55 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:43:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:43:57 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:43:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:43:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:02 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:03 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:06 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:19 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:20 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:44:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:44:22 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539846601" for 10.0.2.2 at 2014-07-16 19:44:23 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539846601"} Carnival::AdminUser Load (6.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.5ms) SELECT "states".* FROM "states" ORDER BY states.name desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (142.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (4.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (154.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (146.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (580.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (121.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (583.9ms) Completed 200 OK in 4251ms (Views: 4216.4ms | ActiveRecord: 24.4ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 19:44:28 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:44:49 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Admin::Country Load (5.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (130.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (755.0ms)  (4.9ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (4.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (61.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1500.7ms) Carnival::AdminUserNotification Load (7.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (155.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 3455ms (Views: 2962.1ms | ActiveRecord: 78.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:57 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:44:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:45:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:45:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:45:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:45:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:45:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:45:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:07 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:18 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:20 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:45:20 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:45:21 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907270" for 10.0.2.2 at 2014-07-16 19:45:22 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539907270"} Carnival::AdminUser Load (5.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (4.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.0ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (119.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (4.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (96.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (564.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (221.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (610.9ms) Completed 200 OK in 3909ms (Views: 3876.0ms | ActiveRecord: 21.4ms) Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907271" for 10.0.2.2 at 2014-07-16 19:47:59 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539907271"} Carnival::AdminUser Load (5.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (4.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (9.1ms) SELECT "states".* FROM "states" ORDER BY states.code asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (119.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Admin::Country Load (7.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (24.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (627.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (131.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (734.6ms) Completed 200 OK in 4244ms (Views: 4206.9ms | ActiveRecord: 26.3ms) Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907272" for 10.0.2.2 at 2014-07-16 19:48:07 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539907272"} Carnival::AdminUser Load (6.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.7ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (160.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (20.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (52.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (613.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (128.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (20.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (628.9ms) Completed 200 OK in 4236ms (Views: 4178.9ms | ActiveRecord: 40.1ms) Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907273" for 10.0.2.2 at 2014-07-16 19:48:13 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539907273"} Carnival::AdminUser Load (12.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (8.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.6ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (130.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Admin::Country Load (7.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (644.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (263.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (681.1ms) Completed 200 OK in 4476ms (Views: 4406.7ms | ActiveRecord: 35.3ms) Started GET "/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907274" for 10.0.2.2 at 2014-07-16 19:49:08 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"5", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539907274"} Carnival::AdminUser Load (7.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (5.6ms) SELECT "states".* FROM "states" ORDER BY states.code asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (199.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Admin::Country Load (7.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (40.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (651.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (120.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (700.9ms) Completed 200 OK in 4399ms (Views: 4357.6ms | ActiveRecord: 26.6ms) Started GET "/admin/states.json?scope=all&sEcho=6&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405539907275" for 10.0.2.2 at 2014-07-16 19:49:21 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"6", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405539907275"} Carnival::AdminUser Load (5.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.0ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (104.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Admin::Country Load (4.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (540.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (131.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (554.6ms) Completed 200 OK in 3567ms (Views: 3530.5ms | ActiveRecord: 23.4ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:50:25 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.9ms) Admin::Country Load (8.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (167.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (745.6ms)  (5.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (63.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1644.5ms) Carnival::AdminUserNotification Load (5.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (132.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (22.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 3593ms (Views: 3025.0ms | ActiveRecord: 87.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:33 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:37 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:39 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:50:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:43 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:53 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:54 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:50:55 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:50:56 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:50:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:50:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:50:59 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 19:50:59 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:51:00 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 19:51:01 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 19:51:06 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 19:51:07 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:51:08 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540242977" for 10.0.2.2 at 2014-07-16 19:51:09 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540242977"} Carnival::AdminUser Load (6.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (8.0ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (133.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Admin::Country Load (8.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (111.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (724.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (122.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (665.6ms) Completed 200 OK in 4558ms (Views: 4515.9ms | ActiveRecord: 29.3ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 19:51:14 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 19:51:15 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540242978" for 10.0.2.2 at 2014-07-16 19:51:17 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540242978"} Carnival::AdminUser Load (8.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.9ms) SELECT "states".* FROM "states" ORDER BY states.code asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (130.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Admin::Country Load (5.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (695.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (109.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (556.7ms) Completed 200 OK in 3877ms (Views: 3839.3ms | ActiveRecord: 26.1ms) Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540242979" for 10.0.2.2 at 2014-07-16 19:51:23 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540242979"} Carnival::AdminUser Load (6.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (4.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (5.2ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (113.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Admin::Country Load (6.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (569.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (112.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (551.3ms) Completed 200 OK in 3592ms (Views: 3559.0ms | ActiveRecord: 23.0ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 19:51:27 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:52:41 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (6.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.8ms) Admin::Country Load (5.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (136.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (719.3ms)  (5.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (178.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1612.1ms) Carnival::AdminUserNotification Load (6.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (4.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (155.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3621ms (Views: 3115.7ms | ActiveRecord: 77.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:56 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:52:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:52:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:52:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:52:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:04 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:10 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:53:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:53:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:53:14 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:53:15 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:53:16 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:53:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 19:53:18 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540378931" for 10.0.2.2 at 2014-07-16 19:53:19 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540378931"} Carnival::AdminUser Load (12.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (8.9ms) SELECT "states".* FROM "states" ORDER BY states.id LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (170.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Admin::Country Load (4.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (110.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (627.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (124.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (637.0ms) Completed 200 OK in 4006ms (Views: 3958.0ms | ActiveRecord: 33.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 19:53:24 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 19:53:25 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:53:25 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 19:53:26 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 19:56:11 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (6.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Admin::Country Load (6.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (670.6ms)  (6.1ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (69.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1529.6ms) Carnival::AdminUserNotification Load (7.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (6.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (38.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3186ms (Views: 3125.3ms | ActiveRecord: 46.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:16 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:24 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 19:56:25 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:35 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:38 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 19:56:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 19:56:41 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 19:56:42 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 19:56:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 19:56:44 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 19:56:45 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 19:56:45 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540587131" for 10.0.2.2 at 2014-07-16 19:56:46 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540587131"} Carnival::AdminUser Load (6.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.1ms) SELECT "states".* FROM "states" ORDER BY states.id LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (136.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Admin::Country Load (4.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (21.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (650.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (110.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (126.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (572.0ms) Completed 200 OK in 3974ms (Views: 3939.9ms | ActiveRecord: 22.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 19:56:51 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 19:56:52 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 19:56:53 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 19:56:54 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:01:27 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:01:41 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Admin::Country Load (4.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (14.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (581.3ms)  (5.1ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (68.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1374.0ms) Carnival::AdminUserNotification Load (4.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (4.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (23.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (142.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 2887ms (Views: 2836.9ms | ActiveRecord: 38.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:48 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:01:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:58 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:01:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:06 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:07 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:02:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:02:09 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 20:02:10 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 20:02:11 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 20:02:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:02:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 20:02:14 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540915681" for 10.0.2.2 at 2014-07-16 20:02:15 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540915681"} Carnival::AdminUser Load (6.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (5.8ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (146.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Admin::Country Load (7.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (704.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (162.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (628.8ms) Completed 200 OK in 4493ms (Views: 4448.6ms | ActiveRecord: 25.7ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 20:02:21 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 20:02:22 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 20:02:23 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 20:02:23 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 20:02:24 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:02:52 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.5ms) Admin::Country Load (5.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (140.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (728.3ms)  (5.0ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (65.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1663.7ms) Carnival::AdminUserNotification Load (5.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (141.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (127.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3807ms (Views: 3244.7ms | ActiveRecord: 71.9ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 20:02:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:01 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:04 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:05 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:03:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:10 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:17 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:20 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:22 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:03:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:03:25 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405540991983" for 10.0.2.2 at 2014-07-16 20:03:26 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405540991983"} Carnival::AdminUser Load (5.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.7ms) SELECT "states".* FROM "states" ORDER BY states.id LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (115.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Admin::Country Load (6.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (22.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (112.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (550.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (114.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (558.5ms) Completed 200 OK in 3768ms (Views: 3733.9ms | ActiveRecord: 24.0ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:04:38 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Admin::Country Load (5.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (136.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (830.8ms)  (6.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (68.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1467.8ms) Carnival::AdminUserNotification Load (5.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (9.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (141.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (29.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3402ms (Views: 2898.6ms | ActiveRecord: 79.8ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:04:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:04:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:06 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:07 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:05:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:05:09 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 20:05:10 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 20:05:11 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 20:05:12 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:05:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 20:05:14 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541095599" for 10.0.2.2 at 2014-07-16 20:05:15 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541095599"} Carnival::AdminUser Load (6.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (18.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.0ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (131.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Admin::Country Load (6.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (112.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (712.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (124.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) CACHE (0.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (12.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (687.9ms) Completed 200 OK in 4550ms (Views: 4497.4ms | ActiveRecord: 38.0ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 20:05:20 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 20:05:21 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 20:05:22 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 20:05:23 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:07:02 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Admin::Country Load (5.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (13.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (734.4ms)  (5.8ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (76.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1757.8ms) Carnival::AdminUserNotification Load (6.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (28.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 3385ms (Views: 3323.1ms | ActiveRecord: 47.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:08 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:09 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:10 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:16 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:07:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:22 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:29 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:07:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:07:31 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541239415" for 10.0.2.2 at 2014-07-16 20:08:49 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541239415"} Carnival::AdminUser Load (6.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.1ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (111.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Admin::Country Load (7.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (24.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (699.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (158.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (568.5ms) Completed 200 OK in 4084ms (Views: 4047.7ms | ActiveRecord: 26.0ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 20:10:44 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:10:47 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (6.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Admin::Country Load (6.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (14.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (571.4ms)  (4.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (72.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1338.8ms) Carnival::AdminUserNotification Load (4.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (22.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (25.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 2855ms (Views: 2801.0ms | ActiveRecord: 40.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:51 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:55 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:56 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:56 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:10:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:04 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:04 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:05 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:13 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:14 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:15 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:11:16 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 20:11:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 20:11:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 20:11:19 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:11:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 20:11:21 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541461969" for 10.0.2.2 at 2014-07-16 20:11:22 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541461969"} Carnival::AdminUser Load (7.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.7ms) SELECT "states".* FROM "states" ORDER BY states.id desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (113.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Admin::Country Load (4.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (577.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (131.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (551.2ms) Completed 200 OK in 3682ms (Views: 3645.1ms | ActiveRecord: 26.2ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 20:11:27 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 20:11:27 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 20:11:28 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 20:11:29 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 20:11:30 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:11:42 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:11:44 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Admin::Country Load (6.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (153.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (713.5ms)  (5.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (67.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1351.1ms) Carnival::AdminUserNotification Load (8.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (6.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (164.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (23.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3406ms (Views: 2779.8ms | ActiveRecord: 85.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:57 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:11:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:11:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:05 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:10 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:12:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:12:13 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:12:14 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 20:12:15 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541519614" for 10.0.2.2 at 2014-07-16 20:12:16 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541519614"} Carnival::AdminUser Load (9.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (8.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.7ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (126.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.3ms) Admin::Country Load (6.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (119.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (598.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (192.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (563.2ms) Completed 200 OK in 4027ms (Views: 3983.6ms | ActiveRecord: 32.1ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 20:12:21 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:13:02 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (11.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.9ms) Admin::Country Load (6.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (164.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (796.4ms)  (5.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.0ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (199.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1620.9ms) Carnival::AdminUserNotification Load (6.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (6.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (187.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (39.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 3904ms (Views: 3319.9ms | ActiveRecord: 81.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:10 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:13:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:31 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:13:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:13:35 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541601148" for 10.0.2.2 at 2014-07-16 20:13:36 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541601148"} Carnival::AdminUser Load (5.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (5.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (128.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Admin::Country Load (6.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (160.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (103.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (578.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (111.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (640.3ms) Completed 200 OK in 4465ms (Views: 3898.5ms | ActiveRecord: 51.7ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:15:03 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (5.2ms) Admin::Country Load (8.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (20.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (711.9ms)  (8.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.8ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (267.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1859.3ms) Carnival::AdminUserNotification Load (16.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (7.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (172.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3588ms (Views: 3504.8ms | ActiveRecord: 68.7ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:08 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:10 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:12 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:16 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:15:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:27 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:28 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:15:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:15:32 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541719932" for 10.0.2.2 at 2014-07-16 20:15:33 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541719932"} Carnival::AdminUser Load (5.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.0ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (115.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Admin::Country Load (6.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (24.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (559.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (105.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.7ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (14.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (552.8ms) Completed 200 OK in 3534ms (Views: 3500.8ms | ActiveRecord: 22.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:16:36 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (8.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Admin::Country Load (4.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (570.5ms)  (7.0ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.2ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (5.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (66.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1193.4ms) Carnival::AdminUserNotification Load (5.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (24.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (155.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 2684ms (Views: 2629.3ms | ActiveRecord: 41.6ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:44 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:16:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:53 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:16:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:17:00 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:17:01 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:17:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:17:03 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541810856" for 10.0.2.2 at 2014-07-16 20:17:23 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541810856"} Carnival::AdminUser Load (7.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.6ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (118.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Admin::Country Load (6.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (599.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (109.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (565.0ms) Completed 200 OK in 4014ms (Views: 3968.2ms | ActiveRecord: 28.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:18:38 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Admin::Country Load (5.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (571.6ms)  (4.7ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (8.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (67.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1475.7ms) Carnival::AdminUserNotification Load (4.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (4.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (26.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (25.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 2893ms (Views: 2841.4ms | ActiveRecord: 38.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:44 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:18:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:58 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:18:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:19:00 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:19:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:19:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:19:03 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:19:04 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:19:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:19:06 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933242" for 10.0.2.2 at 2014-07-16 20:19:07 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541933242"} Carnival::AdminUser Load (7.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (8.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (8.2ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (122.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Admin::Country Load (7.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (640.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (155.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.6ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (83.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (632.1ms) Completed 200 OK in 4274ms (Views: 4227.6ms | ActiveRecord: 31.1ms) Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933243" for 10.0.2.2 at 2014-07-16 20:19:16 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541933243"} Carnival::AdminUser Load (7.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (6.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.7ms) SELECT "states".* FROM "states" ORDER BY states.code asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (123.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Admin::Country Load (5.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (632.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (122.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (564.2ms) Completed 200 OK in 3998ms (Views: 3956.3ms | ActiveRecord: 27.1ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 20:19:20 +0000 Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933244" for 10.0.2.2 at 2014-07-16 20:19:21 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541933244"} Carnival::AdminUser Load (6.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (6.4ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (237.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Admin::Country Load (4.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (552.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (122.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (557.3ms) Completed 200 OK in 3718ms (Views: 3683.4ms | ActiveRecord: 22.9ms) Started GET "/admin/states.json?scope=all&sEcho=4&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933245" for 10.0.2.2 at 2014-07-16 20:19:27 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"4", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541933245"} Carnival::AdminUser Load (6.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.7ms) SELECT "states".* FROM "states" ORDER BY states.name desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (112.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Admin::Country Load (8.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (564.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (118.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (524.7ms) Completed 200 OK in 3526ms (Views: 3487.7ms | ActiveRecord: 27.8ms) Started GET "/admin/states.json?scope=all&sEcho=5&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405541933246" for 10.0.2.2 at 2014-07-16 20:19:34 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"5", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405541933246"} Carnival::AdminUser Load (5.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.0ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (107.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Admin::Country Load (5.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (546.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (110.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (13.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (554.4ms) Completed 200 OK in 3499ms (Views: 3463.3ms | ActiveRecord: 23.1ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:20:07 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (7.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Admin::Country Load (6.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (173.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (981.4ms)  (5.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (92.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1757.0ms) Carnival::AdminUserNotification Load (7.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (6.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (191.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (25.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.3ms) Completed 200 OK in 4122ms (Views: 3472.1ms | ActiveRecord: 97.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:15 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:20:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:25 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:26 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:36 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:20:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:20:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 20:20:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 20:20:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 20:20:41 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:20:42 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 20:20:43 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=true&bSortable_1=true&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542026090" for 10.0.2.2 at 2014-07-16 20:20:44 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405542026090"} Carnival::AdminUser Load (5.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (4.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (10.4ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (118.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Admin::Country Load (6.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (22.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (103.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (588.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (111.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (602.7ms) Completed 200 OK in 3828ms (Views: 3787.4ms | ActiveRecord: 27.4ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 20:20:48 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-16 20:20:49 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 20:20:50 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 20:20:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 20:20:52 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-16 20:21:00 +0000 Started GET "/admin/states.json?scope=all&sEcho=2&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542026091" for 10.0.2.2 at 2014-07-16 20:21:02 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"2", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405542026091"} Carnival::AdminUser Load (5.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (9.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.3ms) SELECT "states".* FROM "states" ORDER BY states.name asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (124.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.1ms) Admin::Country Load (6.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (170.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (110.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (654.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (141.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (622.5ms) Completed 200 OK in 5035ms (Views: 4443.5ms | ActiveRecord: 59.3ms) Started GET "/admin/states.json?scope=all&sEcho=3&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=1&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542026092" for 10.0.2.2 at 2014-07-16 20:21:10 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"1", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405542026092"} Carnival::AdminUser Load (9.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (8.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.6ms) SELECT "states".* FROM "states" ORDER BY states.name desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (169.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Admin::Country Load (7.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (674.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (133.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (656.7ms) Completed 200 OK in 4221ms (Views: 4177.3ms | ActiveRecord: 32.7ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-16 20:21:15 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-16 20:21:21 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (5.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Admin::Country Load (5.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (586.0ms)  (5.5ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (6.1ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (7.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (70.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1218.1ms) Carnival::AdminUserNotification Load (5.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (5.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (138.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 2854ms (Views: 2793.5ms | ActiveRecord: 47.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:24 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:32 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-16 20:21:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:39 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:44 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:45 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-16 20:21:46 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-16 20:21:47 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-16 20:21:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-16 20:21:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-16 20:21:50 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-16 20:21:51 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-16 20:21:51 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1405542094940" for 10.0.2.2 at 2014-07-16 20:21:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1405542094940"} Carnival::AdminUser Load (5.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (7.6ms) SELECT "states".* FROM "states" ORDER BY states.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (111.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Admin::Country Load (4.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (574.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (122.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.5ms) CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (585.8ms) Completed 200 OK in 3795ms (Views: 3762.5ms | ActiveRecord: 22.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-16 20:21:57 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-16 20:21:58 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-16 20:21:59 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-16 20:22:00 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-17 19:21:46 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 67ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-17 19:21:47 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (3.7ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (117.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.6ms) Completed 200 OK in 1740ms (Views: 1712.3ms | ActiveRecord: 1.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:49 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:49 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:50 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:51 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:51 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 19:21:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:53 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:54 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:54 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:21:55 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 19:21:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 19:21:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 19:21:55 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-07-17 19:21:56 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (45.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.2ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-17 19:22:02 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"XxavyvvIxk76J75R4qBlA/Q+geo42pNfe+H4f9ad9bI=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (3.9ms) UPDATE "admin_users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["current_sign_in_at", "2014-07-17 19:22:02.923519"], ["last_sign_in_at", "2014-07-16 14:51:56.172841"], ["sign_in_count", 3], ["updated_at", "2014-07-17 19:22:02.926437"]]  (2.8ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 189ms (ActiveRecord: 9.3ms) Started GET "/admin" for 10.0.2.2 at 2014-07-17 19:22:02 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (154.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (8.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (423.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (83.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1183ms (Views: 906.8ms | ActiveRecord: 6.5ms) Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 19:22:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 19:22:04 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 19:22:05 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 19:22:05 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 19:22:05 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 19:22:06 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 19:22:06 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 19:22:06 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405624924404" for 10.0.2.2 at 2014-07-17 19:22:06 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405624924404"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 109ms (Views: 101.3ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-17 19:22:07 +0000 Started GET "/admin/admin_users.json?advancedquery=%7B%22id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%222%22,%20%22type%22:%22undefined%22%7D%7D&sEcho=2&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405624924405" for 10.0.2.2 at 2014-07-17 19:22:10 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"2\", \"type\":\"undefined\"}}", "sEcho"=>"2", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405624924405"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "admin_users" Completed 500 Internal Server Error in 9ms NoMethodError - undefined method `relation_field?' for #: /project/app/services/carnival/presenters/advanced_search_parser.rb:32:in `parse_advanced_search_field' /project/app/services/carnival/presenters/advanced_search_parser.rb:21:in `block in parse_advanced_search' /project/app/services/carnival/presenters/advanced_search_parser.rb:15:in `parse_advanced_search' /project/app/presenters/carnival/base_admin_presenter.rb:286:in `parse_advanced_search' /project/app/datatable/carnival/generic_datatable.rb:162:in `fetch_records' /project/app/datatable/carnival/generic_datatable.rb:139:in `records' /project/app/datatable/carnival/generic_datatable.rb:101:in `get_data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.1.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.1.4) lib/active_support/json/encoding.rb:21:in `encode' activesupport (4.1.4) lib/active_support/core_ext/object/json.rb:37:in `to_json_with_active_support_encoder' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:96:in `block in ' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:39:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:36:in `_handle_render_options' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:33:in `block (2 levels) in index' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:25:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin" for 10.0.2.2 at 2014-07-17 19:23:54 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (94.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (277.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (37.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 809ms (Views: 631.6ms | ActiveRecord: 10.1ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:57 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:58 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:59 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:59 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 19:23:59 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625036633" for 10.0.2.2 at 2014-07-17 19:24:00 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625036633"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 112ms (Views: 104.3ms | ActiveRecord: 4.3ms) Started GET "/admin/admin_users.json?advancedquery=%7B%22id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%221%22,%20%22type%22:%22undefined%22%7D%7D&sEcho=2&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625036634" for 10.0.2.2 at 2014-07-17 19:24:03 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"undefined\"}}", "sEcho"=>"2", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625036634"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "admin_users" Completed 500 Internal Server Error in 13ms NameError - undefined local variable or method `field' for #: /project/app/services/carnival/presenters/advanced_search_parser.rb:35:in `parse_advanced_search_field' /project/app/services/carnival/presenters/advanced_search_parser.rb:24:in `block in parse_advanced_search' /project/app/services/carnival/presenters/advanced_search_parser.rb:18:in `parse_advanced_search' /project/app/presenters/carnival/base_admin_presenter.rb:286:in `parse_advanced_search' /project/app/datatable/carnival/generic_datatable.rb:162:in `fetch_records' /project/app/datatable/carnival/generic_datatable.rb:139:in `records' /project/app/datatable/carnival/generic_datatable.rb:101:in `get_data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.1.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.1.4) lib/active_support/json/encoding.rb:21:in `encode' activesupport (4.1.4) lib/active_support/core_ext/object/json.rb:37:in `to_json_with_active_support_encoder' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:96:in `block in ' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:39:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:36:in `_handle_render_options' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:33:in `block (2 levels) in index' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:25:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin" for 10.0.2.2 at 2014-07-17 19:24:51 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (99.0ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (237.8ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 803ms (Views: 639.0ms | ActiveRecord: 9.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:53 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:53 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:54 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 19:24:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:57 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 19:24:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 19:24:58 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 19:24:58 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 19:24:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 19:24:59 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 19:24:59 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 19:24:59 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625095165" for 10.0.2.2 at 2014-07-17 19:25:00 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625095165"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 107ms (Views: 99.8ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-17 19:25:00 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 19:25:00 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 19:25:00 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 19:25:01 +0000 Started GET "/admin/admin_users.json?advancedquery=%7B%22id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%222%22,%20%22type%22:%22undefined%22%7D%7D&sEcho=2&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625095166" for 10.0.2.2 at 2014-07-17 19:25:04 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"2\", \"type\":\"undefined\"}}", "sEcho"=>"2", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625095166"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (3.6ms) SELECT COUNT(*) FROM "admin_users" Completed 500 Internal Server Error in 14ms NameError - undefined local variable or method `table_name' for #: /project/app/services/carnival/presenters/advanced_search_parser.rb:46:in `parse_advanced_search_field' /project/app/services/carnival/presenters/advanced_search_parser.rb:24:in `block in parse_advanced_search' /project/app/services/carnival/presenters/advanced_search_parser.rb:18:in `parse_advanced_search' /project/app/presenters/carnival/base_admin_presenter.rb:286:in `parse_advanced_search' /project/app/datatable/carnival/generic_datatable.rb:162:in `fetch_records' /project/app/datatable/carnival/generic_datatable.rb:139:in `records' /project/app/datatable/carnival/generic_datatable.rb:101:in `get_data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.1.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.1.4) lib/active_support/json/encoding.rb:21:in `encode' activesupport (4.1.4) lib/active_support/core_ext/object/json.rb:37:in `to_json_with_active_support_encoder' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:96:in `block in ' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:39:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:36:in `_handle_render_options' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:33:in `block (2 levels) in index' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:25:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin" for 10.0.2.2 at 2014-07-17 19:29:30 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (114.4ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (261.6ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 837ms (Views: 611.2ms | ActiveRecord: 11.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:32 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:37 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 19:29:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 19:29:38 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 19:29:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 19:29:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 19:29:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 19:29:39 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625374987" for 10.0.2.2 at 2014-07-17 19:29:39 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625374987"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 154ms (Views: 147.3ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-17 19:29:40 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 19:29:40 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 19:29:40 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 19:29:40 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-17 19:29:50 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (102.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (233.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 578ms (Views: 571.3ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 19:29:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:56 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:56 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 19:29:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 19:29:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 19:29:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 19:29:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 19:29:58 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 19:29:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 19:29:58 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625394058" for 10.0.2.2 at 2014-07-17 19:29:58 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625394058"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (3.4ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (4.1ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 166ms (Views: 144.7ms | ActiveRecord: 8.8ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-17 19:29:59 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 19:29:59 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 19:29:59 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 19:29:59 +0000 Started GET "/admin/admin_users.json?advancedquery=%7B%22id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%222%22,%20%22type%22:%22undefined%22%7D%7D&sEcho=2&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625394059" for 10.0.2.2 at 2014-07-17 19:30:03 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"2\", \"type\":\"undefined\"}}", "sEcho"=>"2", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625394059"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE (admin_users.id = 2) ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 12ms (Views: 3.3ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 19:40:55 +0000 Started GET "/admin/admin_users.json?advancedquery=%7B%7D&sEcho=3&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625394060" for 10.0.2.2 at 2014-07-17 19:43:06 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{}", "sEcho"=>"3", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625394060"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 103ms (Views: 95.7ms | ActiveRecord: 4.4ms) Started GET "/admin/admin_users.json?advancedquery=%7B%22email%22:%7B%22operator%22:%22like%22,%20%22value%22:%22admin%22,%20%22type%22:%22undefined%22%7D%7D&sEcho=4&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405625394061" for 10.0.2.2 at 2014-07-17 19:43:13 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{\"email\":{\"operator\":\"like\", \"value\":\"admin\", \"type\":\"undefined\"}}", "sEcho"=>"4", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405625394061"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE (admin_users.email like '%admin%') ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 106ms (Views: 98.7ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 19:58:34 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:24:22 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.3ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (33.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (257.1ms)  (1.4ms) SELECT COUNT(*) FROM "states"  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (79.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (553.9ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (61.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.0ms) Completed 200 OK in 1714ms (Views: 1403.8ms | ActiveRecord: 16.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:24 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:24:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:24:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:24:30 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 21:24:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 21:24:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 21:24:31 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 21:24:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 21:24:32 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632267277" for 10.0.2.2 at 2014-07-17 21:24:32 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405632267277"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.6ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 260ms (Views: 246.8ms | ActiveRecord: 10.2ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-17 21:24:32 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-17 21:24:33 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 21:24:33 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 21:24:33 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 21:24:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-17 21:25:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 21:25:47 +0000 Started GET "/admin/states/2/edit" for 10.0.2.2 at 2014-07-17 21:29:45 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (113.2ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 2]] Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (137.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (380.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (684.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1118.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1249.7ms) Carnival::AdminUserNotification Load (0.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (0.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (38.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.8ms) Completed 200 OK in 2355ms (Views: 2104.9ms | ActiveRecord: 22.8ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:49 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:49 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:49 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:51 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:29:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:29:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 21:29:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-17 21:29:55 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-17 21:29:55 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 21:29:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 21:29:55 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-17 21:29:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 21:29:56 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:29:57 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (192.5ms)  (2.0ms) SELECT COUNT(*) FROM "states"  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (44.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (396.8ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 801ms (Views: 735.3ms | ActiveRecord: 10.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:29:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:30:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:30:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:30:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:30:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:30:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:04 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:04 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:30:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:30:05 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 21:30:05 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632601381" for 10.0.2.2 at 2014-07-17 21:30:05 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405632601381"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.5ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 172ms (Views: 160.8ms | ActiveRecord: 7.5ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 21:30:06 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 21:30:06 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 21:30:06 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-17 21:31:31 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:31:34 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (189.9ms)  (1.2ms) SELECT COUNT(*) FROM "states"  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (13.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (334.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 667ms (Views: 654.7ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:36 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:36 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:36 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:38 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:39 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:39 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:40 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:40 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:40 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:41 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:31:41 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632698045" for 10.0.2.2 at 2014-07-17 21:31:41 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405632698045"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (2.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 126ms (Views: 114.3ms | ActiveRecord: 8.3ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:31:47 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (142.1ms)  (1.1ms) SELECT COUNT(*) FROM "states"  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (13.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (292.8ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 698ms (Views: 684.6ms | ActiveRecord: 9.9ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:48 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:49 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:31:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:53 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:53 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:31:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:31:53 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632710621" for 10.0.2.2 at 2014-07-17 21:31:54 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405632710621"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 113ms (Views: 103.3ms | ActiveRecord: 6.8ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:33:25 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (135.5ms)  (1.3ms) SELECT COUNT(*) FROM "states"  (2.0ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (12.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (280.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 605ms (Views: 592.1ms | ActiveRecord: 10.1ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:33:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:29 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:31 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:33:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:33:31 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632808516" for 10.0.2.2 at 2014-07-17 21:33:32 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405632808516"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 115ms (Views: 105.5ms | ActiveRecord: 6.6ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:34:50 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (41.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (170.8ms)  (1.3ms) SELECT COUNT(*) FROM "states"  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (385.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 931ms (Views: 751.4ms | ActiveRecord: 18.8ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:34:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:57 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:57 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:34:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:34:57 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405632894370" for 10.0.2.2 at 2014-07-17 21:34:57 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405632894370"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 153960ms (Views: 153946.8ms | ActiveRecord: 9.6ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:37:44 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (8.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (60.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (246.3ms)  (2.1ms) SELECT COUNT(*) FROM "states"  (2.0ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (13.1ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (109.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (545.5ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (55.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.7ms) Completed 200 OK in 1255ms (Views: 992.3ms | ActiveRecord: 42.0ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:49 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:49 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:37:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:51 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:53 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:54 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:37:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:37:54 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 21:37:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 21:37:55 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 21:37:55 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 21:37:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 21:37:55 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633070906" for 10.0.2.2 at 2014-07-17 21:37:56 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633070906"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 320ms (Views: 296.8ms | ActiveRecord: 12.5ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-17 21:37:56 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 21:37:56 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-07-17 21:37:57 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 21:37:57 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 21:37:57 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:38:04 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (5.1ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (240.0ms)  (1.7ms) SELECT COUNT(*) FROM "states"  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (2.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (47.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (497.5ms) Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1112ms (Views: 1084.4ms | ActiveRecord: 14.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:06 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:08 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:11 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:38:12 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633088642" for 10.0.2.2 at 2014-07-17 21:38:12 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633088642"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (2.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 260ms (Views: 236.4ms | ActiveRecord: 10.0ms) Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:38:51 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (63.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (59.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (276.7ms)  (1.8ms) SELECT COUNT(*) FROM "states"  (2.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (2.0ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (39.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (497.3ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (52.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (88.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1230ms (Views: 988.2ms | ActiveRecord: 35.7ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:55 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:55 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:56 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:56 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:57 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:57 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:38:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:58 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:59 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:38:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:00 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:00 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:00 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:00 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:01 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:01 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:39:01 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633137974" for 10.0.2.2 at 2014-07-17 21:39:01 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633137974"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (2.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 348ms (Views: 324.8ms | ActiveRecord: 11.9ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 21:39:12 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:39:14 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (59.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (310.9ms)  (1.7ms) SELECT COUNT(*) FROM "states"  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.7ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (38.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (538.7ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (57.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (91.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1288ms (Views: 1053.3ms | ActiveRecord: 25.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:39:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:22 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:22 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:39:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:39:22 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 21:39:23 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633159316" for 10.0.2.2 at 2014-07-17 21:39:23 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633159316"} Carnival::AdminUser Load (2.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.8ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (2.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 104001ms (Views: 103972.1ms | ActiveRecord: 18.3ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 21:41:07 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-17 21:41:07 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:42:41 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.8ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (56.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (213.7ms)  (1.6ms) SELECT COUNT(*) FROM "states"  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (34.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (421.2ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (52.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (27.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1209ms (Views: 915.4ms | ActiveRecord: 23.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:45 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:42:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:50 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:50 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:42:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:42:51 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633367625" for 10.0.2.2 at 2014-07-17 21:42:51 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633367625"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 500 Internal Server Error in 171ms NoMethodError - undefined method `name' for :country:Symbol: /project/app/presenters/carnival/base_admin_presenter.rb:271:in `relation_path' /project/app/helpers/carnival/base_admin_helper.rb:114:in `field_to_show' /project/app/helpers/carnival/base_admin_helper.rb:132:in `list_cel' /project/app/datatable/carnival/generic_datatable.rb:4:in `list_cel' /project/app/datatable/carnival/generic_datatable.rb:127:in `block in build_table_row' /project/app/datatable/carnival/generic_datatable.rb:126:in `build_table_row' /project/app/datatable/carnival/generic_datatable.rb:102:in `block in get_data' activerecord (4.1.4) lib/active_record/relation/delegation.rb:46:in `each' /project/app/datatable/carnival/generic_datatable.rb:101:in `get_data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.1.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.1.4) lib/active_support/json/encoding.rb:21:in `encode' activesupport (4.1.4) lib/active_support/core_ext/object/json.rb:37:in `to_json_with_active_support_encoder' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:96:in `block in ' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:39:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:36:in `_handle_render_options' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:33:in `block (2 levels) in index' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:25:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-17 21:42:52 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:43:09 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Admin::Country Load (2.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (70.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (244.0ms)  (1.8ms) SELECT COUNT(*) FROM "states"  (1.7ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (40.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (469.0ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (129.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1321ms (Views: 1002.7ms | ActiveRecord: 27.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:17 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:18 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:18 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:18 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:19 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:43:19 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633395655" for 10.0.2.2 at 2014-07-17 21:43:19 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633395655"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (3.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.8ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (2.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 270ms (Views: 246.2ms | ActiveRecord: 13.3ms) Started GET "/admin/cities?advanced_search%5Bcities.state_id%5D=1" for 10.0.2.2 at 2014-07-17 21:43:27 +0000 Processing by Admin::CitiesController#index as HTML Parameters: {"advanced_search"=>{"cities.state_id"=>"1"}} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Admin::State Load (1.9ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (31.0ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (29.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (224.5ms)  (1.3ms) SELECT COUNT(*) FROM "cities"  (1.7ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR')  (1.9ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (41.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (83.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (580.1ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (19.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (31.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1068ms (Views: 1026.6ms | ActiveRecord: 13.7ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:29 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:30 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:43:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:34 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:35 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:43:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:43:35 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&advancedquery=%7B%22cities.state_id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%221%22,%20%22type%22:%22%22%7D%7D&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1405633411959" for 10.0.2.2 at 2014-07-17 21:43:35 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "advancedquery"=>"{\"cities.state_id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"\"}}", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1405633411959"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.2ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Completed 500 Internal Server Error in 44ms NameError - undefined local variable or method `model_class' for #: /project/app/services/carnival/presenters/advanced_search_parser.rb:36:in `parse_advanced_search_field' /project/app/services/carnival/presenters/advanced_search_parser.rb:24:in `block in parse_advanced_search' /project/app/services/carnival/presenters/advanced_search_parser.rb:18:in `parse_advanced_search' /project/app/presenters/carnival/base_admin_presenter.rb:285:in `parse_advanced_search' /project/app/datatable/carnival/generic_datatable.rb:162:in `fetch_records' /project/app/datatable/carnival/generic_datatable.rb:139:in `records' /project/app/datatable/carnival/generic_datatable.rb:101:in `get_data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.1.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.1.4) lib/active_support/json/encoding.rb:21:in `encode' activesupport (4.1.4) lib/active_support/core_ext/object/json.rb:37:in `to_json_with_active_support_encoder' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:96:in `block in ' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:39:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:36:in `_handle_render_options' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:33:in `block (2 levels) in index' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:25:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-17 21:43:36 +0000 Started GET "/admin/cities?advanced_search%5Bcities.state_id%5D=1" for 10.0.2.2 at 2014-07-17 21:45:19 +0000 Processing by Admin::CitiesController#index as HTML Parameters: {"advanced_search"=>{"cities.state_id"=>"1"}} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (54.2ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (54.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (264.6ms)  (1.6ms) SELECT COUNT(*) FROM "cities"  (1.8ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR')  (2.0ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (34.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (66.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (601.8ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (49.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (22.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1337ms (Views: 1032.0ms | ActiveRecord: 28.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:23 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:23 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:23 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:23 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:24 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:24 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:24 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:25 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:25 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:25 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:25 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:26 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:26 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:27 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:27 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:27 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:28 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:28 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:45:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:45:29 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&advancedquery=%7B%22cities.state_id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%221%22,%20%22type%22:%22%22%7D%7D&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1405633525838" for 10.0.2.2 at 2014-07-17 21:45:29 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "advancedquery"=>"{\"cities.state_id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"\"}}", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1405633525838"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') SQL (2.5ms) SELECT "cities"."id" AS t0_r0, "cities"."name" AS t0_r1, "cities"."country_id" AS t0_r2, "cities"."state_id" AS t0_r3, "cities"."created_at" AS t0_r4, "cities"."updated_at" AS t0_r5, "states"."id" AS t1_r0, "states"."name" AS t1_r1, "states"."code" AS t1_r2, "states"."country_id" AS t1_r3, "states"."created_at" AS t1_r4, "states"."updated_at" AS t1_r5, "countries"."id" AS t2_r0, "countries"."name" AS t2_r1, "countries"."code" AS t2_r2, "countries"."created_at" AS t2_r3, "countries"."updated_at" AS t2_r4 FROM "cities" INNER JOIN "states" ON "states"."id" = "cities"."state_id" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') AND (states.id = 1) ORDER BY cities.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 350ms (Views: 332.2ms | ActiveRecord: 6.5ms) Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633541411" for 10.0.2.2 at 2014-07-17 21:45:41 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633541411"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 263ms (Views: 231.1ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-17 21:45:42 +0000 Started GET "/admin/cities?advanced_search%5Bcities.state_id%5D=2" for 10.0.2.2 at 2014-07-17 21:45:56 +0000 Processing by Admin::CitiesController#index as HTML Parameters: {"advanced_search"=>{"cities.state_id"=>"2"}} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Admin::State Load (1.9ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.3ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (171.3ms)  (1.7ms) SELECT COUNT(*) FROM "cities"  (1.7ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR')  (1.6ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (39.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (78.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (456.8ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 989ms (Views: 963.5ms | ActiveRecord: 13.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:45:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:46:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:46:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:46:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:00 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:04 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:04 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:46:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:46:05 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&advancedquery=%7B%22cities.state_id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%222%22,%20%22type%22:%22%22%7D%7D&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1405633560830" for 10.0.2.2 at 2014-07-17 21:46:05 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "advancedquery"=>"{\"cities.state_id\":{\"operator\":\"equal\", \"value\":\"2\", \"type\":\"\"}}", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1405633560830"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') SQL (2.2ms) SELECT "cities"."id" AS t0_r0, "cities"."name" AS t0_r1, "cities"."country_id" AS t0_r2, "cities"."state_id" AS t0_r3, "cities"."created_at" AS t0_r4, "cities"."updated_at" AS t0_r5, "states"."id" AS t1_r0, "states"."name" AS t1_r1, "states"."code" AS t1_r2, "states"."country_id" AS t1_r3, "states"."created_at" AS t1_r4, "states"."updated_at" AS t1_r5, "countries"."id" AS t2_r0, "countries"."name" AS t2_r1, "countries"."code" AS t2_r2, "countries"."created_at" AS t2_r3, "countries"."updated_at" AS t2_r4 FROM "cities" INNER JOIN "states" ON "states"."id" = "cities"."state_id" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') AND (states.id = 2) ORDER BY cities.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 202ms (Views: 185.4ms | ActiveRecord: 5.8ms) Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633571958" for 10.0.2.2 at 2014-07-17 21:46:12 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633571958"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.2ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 215ms (Views: 194.6ms | ActiveRecord: 9.4ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-17 21:46:14 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-07-17 21:48:04 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (6.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (39.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (6.4ms) Admin::Country Load (6.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (225.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (916.4ms)  (5.6ms) SELECT COUNT(*) FROM "states"  (5.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (5.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (112.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (1.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1882.9ms) Carnival::AdminUserNotification Load (6.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (6.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (189.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (90.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.2ms) Completed 200 OK in 4548ms (Views: 3558.8ms | ActiveRecord: 93.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:25 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:48:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:39 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:39 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:48:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:48:41 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405633708602" for 10.0.2.2 at 2014-07-17 21:48:42 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405633708602"} Carnival::AdminUser Load (8.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.0ms) SELECT COUNT(*) FROM "states" Admin::State Load (8.9ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (5.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (8.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 1338ms (Views: 1237.5ms | ActiveRecord: 48.4ms) Started GET "/admin/countries/1" for 10.0.2.2 at 2014-07-17 21:48:49 +0000 Processing by Admin::CountriesController#show as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (7.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (6.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/base_admin/show.html.haml within layouts/carnival/admin (1217.9ms) Carnival::AdminUserNotification Load (8.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (8.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (84.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (118.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.6ms) Completed 200 OK in 3187ms (Views: 3035.0ms | ActiveRecord: 31.2ms) Started GET "/admin/cities?advanced_search%5Bcities.state_id%5D=1" for 10.0.2.2 at 2014-07-17 21:48:54 +0000 Processing by Admin::CitiesController#index as HTML Parameters: {"advanced_search"=>{"cities.state_id"=>"1"}} Carnival::AdminUser Load (13.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (17.0ms) Admin::State Load (6.1ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (128.7ms) Admin::Country Load (6.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (118.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (1179.3ms)  (5.7ms) SELECT COUNT(*) FROM "cities"  (8.0ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR')  (8.0ms) SELECT COUNT(*) FROM "cities" INNER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (191.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (323.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (2418.0ms) Carnival::AdminUserNotification Load (6.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (7.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (88.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (147.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.6ms) Completed 200 OK in 4603ms (Views: 4422.5ms | ActiveRecord: 62.0ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:00 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:01 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:02 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:03 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:04 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:05 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:14 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-17 21:49:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:29 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:36 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:36 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:40 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:43 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-17 21:49:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 21:49:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:49:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 21:49:54 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 21:49:55 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-17 21:49:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 21:49:56 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&advancedquery=%7B%22cities.state_id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%221%22,%20%22type%22:%22%22%7D%7D&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=false&_=1405633779986" for 10.0.2.2 at 2014-07-17 21:49:57 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "advancedquery"=>"{\"cities.state_id\":{\"operator\":\"equal\", \"value\":\"1\", \"type\":\"\"}}", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"false", "_"=>"1405633779986"} Carnival::AdminUser Load (7.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (7.0ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') SQL (7.7ms) SELECT "cities"."id" AS t0_r0, "cities"."name" AS t0_r1, "cities"."country_id" AS t0_r2, "cities"."state_id" AS t0_r3, "cities"."created_at" AS t0_r4, "cities"."updated_at" AS t0_r5, "states"."id" AS t1_r0, "states"."name" AS t1_r1, "states"."code" AS t1_r2, "states"."country_id" AS t1_r3, "states"."created_at" AS t1_r4, "states"."updated_at" AS t1_r5, "countries"."id" AS t2_r0, "countries"."name" AS t2_r1, "countries"."code" AS t2_r2, "countries"."created_at" AS t2_r3, "countries"."updated_at" AS t2_r4 FROM "cities" INNER JOIN "states" ON "states"."id" = "cities"."state_id" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') AND (states.id = 1) ORDER BY cities.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 866ms (Views: 797.5ms | ActiveRecord: 22.3ms) Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-17 21:49:59 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-17 21:50:00 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-17 21:50:01 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-17 21:50:02 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-17 21:50:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-17 21:50:04 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-17 21:50:05 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-17 21:50:06 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-18 22:04:03 +0000 ActiveRecord::SchemaMigration Load (5.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 260ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-18 22:04:06 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (12.0ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (465.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (14.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (6.4ms) Completed 200 OK in 3773ms (Views: 3670.6ms | ActiveRecord: 6.5ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:17 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:32 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-18 22:04:33 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-18 22:04:33 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-18 22:04:34 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-07-18 22:04:35 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (143.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (37.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (380.1ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-18 22:04:47 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"meAM9p5czJMBIBTaYqhTTDfIBfugIt/qlbTK9P4ExJM=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (6.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 155ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"meAM9p5czJMBIBTaYqhTTDfIBfugIt/qlbTK9P4ExJM=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (3.5ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (128.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1420ms (Views: 1103.1ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:56 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-18 22:04:57 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-18 22:04:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:05 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:07 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-18 22:05:14 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"meAM9p5czJMBIBTaYqhTTDfIBfugIt/qlbTK9P4ExJM=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (8.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 16ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"meAM9p5czJMBIBTaYqhTTDfIBfugIt/qlbTK9P4ExJM=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (4.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (144.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1441ms (Views: 1125.4ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:24 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:26 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:34 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-18 22:05:44 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"meAM9p5czJMBIBTaYqhTTDfIBfugIt/qlbTK9P4ExJM=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (6.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.3ms) begin transaction SQL (11.2ms) UPDATE "admin_users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["current_sign_in_at", "2014-07-18 22:05:45.790199"], ["last_sign_in_at", "2014-07-17 19:22:02.923519"], ["sign_in_count", 4], ["updated_at", "2014-07-18 22:05:45.796790"]]  (11.2ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 405ms (ActiveRecord: 28.7ms) Started GET "/admin" for 10.0.2.2 at 2014-07-18 22:05:45 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (5.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (9.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (431.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (18.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (1107.4ms) Carnival::AdminUserNotification Load (4.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (4.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (284.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (141.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 3423ms (Views: 2739.1ms | ActiveRecord: 19.9ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:50 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:53 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:57 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-18 22:05:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:05:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:05 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:06 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:08 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:09 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-18 22:06:09 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-18 22:06:10 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-18 22:06:11 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-18 22:06:12 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-18 22:06:13 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-18 22:06:14 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-18 22:06:15 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405721159023" for 10.0.2.2 at 2014-07-18 22:06:15 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405721159023"} Carnival::AdminUser Load (4.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (9.9ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (5.5ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 439ms (Views: 408.3ms | ActiveRecord: 20.3ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-18 22:06:17 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-18 22:07:10 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (4.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (385.4ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (911.2ms) Carnival::AdminUserNotification Load (4.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (4.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (21.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (23.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 2358ms (Views: 2210.2ms | ActiveRecord: 13.4ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-18 22:07:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:27 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-18 22:07:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-18 22:07:34 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405721243365" for 10.0.2.2 at 2014-07-18 22:07:35 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405721243365"} Carnival::AdminUser Load (5.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.0ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (5.4ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 405ms (Views: 380.2ms | ActiveRecord: 16.1ms) Started GET "/admin/admin_users.json?advancedquery=%7B%22id%22:%7B%22operator%22:%22equal%22,%20%22value%22:%224%22,%20%22type%22:%22undefined%22%7D%7D&sEcho=2&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405721243366" for 10.0.2.2 at 2014-07-18 22:07:47 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"advancedquery"=>"{\"id\":{\"operator\":\"equal\", \"value\":\"4\", \"type\":\"undefined\"}}", "sEcho"=>"2", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405721243366"} Carnival::AdminUser Load (6.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (5.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (7.2ms) SELECT "admin_users".* FROM "admin_users" WHERE (admin_users.id = 4) ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 118417ms (Views: 118385.6ms | ActiveRecord: 19.4ms) Started GET "/" for 10.0.2.2 at 2014-07-21 18:42:30 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (10.1ms) Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms) Started GET "/" for 10.0.2.2 at 2014-07-21 18:42:31 +0000 Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-07-21 18:42:34 +0000 Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 110ms Started GET "/admin" for 10.0.2.2 at 2014-07-21 18:42:35 +0000 Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 1ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-21 18:42:35 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (13.6ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (141.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.3ms) Completed 200 OK in 1838ms (Views: 1329.9ms | ActiveRecord: 2.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:38 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:39 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:40 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:40 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:40 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:41 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:41 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:42 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 18:42:44 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 18:42:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 18:42:44 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-07-21 18:42:44 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.0ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-21 18:42:46 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yDzZGNstsHHJAfYxHdkFHUne9z0QnEal5Hod4KuKH6w=", "admin_user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Completed 401 Unauthorized in 1ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yDzZGNstsHHJAfYxHdkFHUne9z0QnEal5Hod4KuKH6w=", "admin_user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (2.1ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (36.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 329ms (Views: 326.9ms | ActiveRecord: 0.0ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-21 18:42:46 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yDzZGNstsHHJAfYxHdkFHUne9z0QnEal5Hod4KuKH6w=", "admin_user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Completed 401 Unauthorized in 1ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yDzZGNstsHHJAfYxHdkFHUne9z0QnEal5Hod4KuKH6w=", "admin_user"=>{"email"=>"", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.3ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (34.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 357ms (Views: 355.6ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 18:42:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:42:52 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 18:42:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 18:42:53 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 18:42:53 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-21 18:42:58 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yDzZGNstsHHJAfYxHdkFHUne9z0QnEal5Hod4KuKH6w=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (3.0ms) UPDATE "admin_users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["current_sign_in_at", "2014-07-21 18:42:58.963318"], ["last_sign_in_at", "2014-07-18 22:05:45.790199"], ["sign_in_count", 5], ["updated_at", "2014-07-21 18:42:58.965262"]]  (3.3ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 169ms (ActiveRecord: 8.2ms) Started GET "/admin" for 10.0.2.2 at 2014-07-21 18:42:58 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (126.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (12.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (387.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (92.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1247ms (Views: 878.8ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:01 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:01 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:02 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:02 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:03 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:03 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:03 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:04 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:04 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:05 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:06 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:06 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:07 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:07 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:07 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 18:43:07 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 18:43:08 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 18:43:08 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-21 18:43:08 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-21 18:43:08 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 18:43:09 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405968183543" for 10.0.2.2 at 2014-07-21 18:43:09 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405968183543"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 166ms (Views: 158.6ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-21 18:43:09 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-21 18:43:09 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-21 18:43:10 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-21 18:43:10 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-21 18:43:12 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (105.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (268.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 631ms (Views: 610.5ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:14 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 18:43:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:16 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:17 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:17 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:17 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:18 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:18 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:19 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:19 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-21 18:43:19 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 18:43:19 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 18:43:20 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 18:43:20 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-21 18:43:20 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-21 18:43:20 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 18:43:20 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1405968196332" for 10.0.2.2 at 2014-07-21 18:43:21 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1405968196332"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."country_id" IN (1) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" IN (1) Completed 200 OK in 216ms (Views: 201.7ms | ActiveRecord: 10.8ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-21 18:43:21 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-21 18:43:21 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-21 18:43:22 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-21 18:43:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-21 18:45:17 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 18:45:18 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Admin::State Load (1.6ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.1ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (173.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (393.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (581.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (817.9ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (50.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1082.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1569.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1624.1ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (50.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 2071ms (Views: 2050.0ms | ActiveRecord: 15.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 18:45:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 18:45:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 18:45:26 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 18:45:26 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-21 18:45:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 18:45:27 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-21 18:45:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-21 18:45:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 18:45:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 18:45:28 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:21:19 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (22.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.3ms) Admin::Country Load (3.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (132.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (494.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (650.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (129.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (85.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1001.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1117.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (106.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (486.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (613.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (2544.1ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (143.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (2844.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (2889.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (2928.4ms) Carnival::AdminUserNotification Load (3.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (47.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 3371ms (Views: 3324.5ms | ActiveRecord: 39.3ms) Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:23 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:23 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:23 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:24 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:24 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:25 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:21:25 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:25 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:26 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:26 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:26 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:26 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:27 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:27 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:27 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:28 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:21:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:21:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 22:21:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-21 22:21:29 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 22:21:29 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-21 22:21:29 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 22:21:29 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 22:21:30 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:26:33 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (143.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (267.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (376.0ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (537.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (573.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (608.5ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 949ms (Views: 933.8ms | ActiveRecord: 11.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:34 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:26:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:26:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:26:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 22:26:40 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-21 22:26:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 22:26:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-21 22:26:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-21 22:26:41 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 22:26:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 22:26:41 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:26:52 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (96.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (221.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (255.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (300.9ms) Completed 500 Internal Server Error in 408ms RuntimeError - : /project/app/views/carnival/shared/form/_nested_form.html.haml:7:in `__project_app_views_carnival_shared_form__nested_form_html_haml___260289770_97652660' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__70717060_88853740' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__70717060_88853740' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__70717060_88853740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___1014047051_98298120' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___1014047051_98298120' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___618761460_98273880' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97786220/variables" for 10.0.2.2 at 2014-07-21 22:26:53 +0000 Started POST "/__better_errors/97786220/eval" for 10.0.2.2 at 2014-07-21 22:27:02 +0000 Started POST "/__better_errors/97786220/eval" for 10.0.2.2 at 2014-07-21 22:27:07 +0000 Started POST "/__better_errors/97786220/eval" for 10.0.2.2 at 2014-07-21 22:27:09 +0000 Admin::State Load (5.2ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Started POST "/__better_errors/97786220/eval" for 10.0.2.2 at 2014-07-21 22:27:11 +0000 Started POST "/__better_errors/97786220/eval" for 10.0.2.2 at 2014-07-21 22:27:13 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:27:34 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.6ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (100.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (25.1ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (778.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (931.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (96.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (890.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1007.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Admin::State Load (1.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (101.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (101.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (100.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (103.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1569.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1693.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (136.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (130.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (97.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (105.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (103.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1682.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1798.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (139.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (257.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (6044.4ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (113.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.1ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (134.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (133.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (133.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (2446.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (8643.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (8688.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (8727.1ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 9056ms (Views: 9033.4ms | ActiveRecord: 19.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:44 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:27:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:46 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:48 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:27:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:27:49 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 22:27:53 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:28:59 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.4ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (54.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (146.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (97.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (134.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (836.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (956.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (101.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.9ms) CACHE (0.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (100.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (129.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (920.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1037.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.5ms) Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (96.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (130.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1516.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1678.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (142.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (137.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (130.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1688.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1803.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (140.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (258.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (5992.2ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (133.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (100.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (132.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (97.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (130.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (2465.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (8608.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (8649.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (8685.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 9021ms (Views: 8995.6ms | ActiveRecord: 21.6ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:08 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:08 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:09 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:29:10 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:10 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:13 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:13 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:13 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:29:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:29:13 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 22:29:18 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:30:03 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (5.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::State Load (2.1ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.5ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (38.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (163.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (949.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1088.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (51.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (137.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (96.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (134.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (965.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1082.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.7ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (79.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (151.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (97.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1510.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1630.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (58.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (132.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (85.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.0ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1622.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1784.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (139.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (259.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (6233.0ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (57.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (6508.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (6546.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (6580.6ms) Completed 500 Internal Server Error in 6906ms NoMethodError - undefined method `country_id' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' actionview (4.1.4) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:16:in `block in render' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:16:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' /project/app/inputs/admin_relationship_select_input.rb:17:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml__647755023_93338480' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__70717060_88853740' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__70717060_88853740' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__70717060_88853740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___1014047051_98298120' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___1014047051_98298120' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___618761460_98273880' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/93304710/variables" for 10.0.2.2 at 2014-07-21 22:30:11 +0000 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:30:22 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (142.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (146.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (898.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1091.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (101.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (916.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1078.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (68.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (141.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1544.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1663.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (100.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (136.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (1638.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1758.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (138.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (305.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (6240.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (6369.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (6409.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (6445.3ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (49.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 6974ms (Views: 6798.0ms | ActiveRecord: 28.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:32 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:30:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:30:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 22:30:39 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-21 22:30:56 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."country_id" = ? [["country_id", 1]] Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (338.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (474.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (659.2ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (62.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (880.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (923.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (959.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (40.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1497ms (Views: 1315.7ms | ActiveRecord: 28.8ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:30:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:00 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:31:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:31:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:31:04 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-21 22:31:04 +0000 Started GET "/admin/testes" for 10.0.2.2 at 2014-07-21 22:40:56 +0000 Processing by Admin::TestesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 33ms NameError - uninitialized constant Admin::TestisPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:121:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:115:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:8:in `generate_datatable' /project/app/controllers/carnival/base_admin_controller.rb:17:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97825190/variables" for 10.0.2.2 at 2014-07-21 22:40:57 +0000 Started GET "/admin/admin_users" for 10.0.2.2 at 2014-07-21 22:41:04 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (5.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (47.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (148.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (367.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 800ms (Views: 714.8ms | ActiveRecord: 7.5ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:05 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:06 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:06 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:07 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:08 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:08 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:08 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:09 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:09 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:10 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:10 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:10 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:41:11 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-21 22:41:11 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-21 22:41:11 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-21 22:41:11 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1405982468175" for 10.0.2.2 at 2014-07-21 22:41:12 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1405982468175"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 105ms (Views: 98.5ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-21 22:41:12 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-21 22:41:12 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-21 22:41:12 +0000 Started GET "/admin/admin_users/1/edit" for 10.0.2.2 at 2014-07-21 22:41:15 +0000 Processing by Carnival::AdminUsersController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (65.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (243.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (281.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (315.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 663ms (Views: 651.8ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-21 22:41:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-21 22:41:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-21 22:41:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-21 22:41:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-21 22:41:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-21 22:41:22 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-21 22:41:22 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-21 22:41:23 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-21 22:41:23 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-21 22:41:23 +0000 Started GET "/admin" for 10.0.2.2 at 2014-07-24 13:45:54 +0000 ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 71ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-24 13:45:55 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (4.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (136.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (5.4ms) Completed 200 OK in 2181ms (Views: 2155.8ms | ActiveRecord: 2.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:59 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:45:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:46:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:01 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:02 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:03 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:46:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:46:03 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:46:03 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-07-24 13:46:04 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (67.5ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-07-24 13:46:08 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZBkWvGLwaCL7gUhjubo78Og1OFxAJH6oHYcNMzGWLl4=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (39.4ms) UPDATE "admin_users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["last_sign_in_at", Mon, 21 Jul 2014 18:42:58 UTC +00:00], ["current_sign_in_at", Thu, 24 Jul 2014 13:46:08 UTC +00:00], ["sign_in_count", 6], ["updated_at", Thu, 24 Jul 2014 13:46:08 UTC +00:00]]  (2.7ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 154ms (ActiveRecord: 44.1ms) Started GET "/admin" for 10.0.2.2 at 2014-07-24 13:46:08 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (168.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (14.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (12.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (458.8ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (173.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1273ms (Views: 965.5ms | ActiveRecord: 6.6ms) Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:46:10 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:46:10 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:10 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:11 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 13:46:11 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-24 13:46:11 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 13:46:11 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&_=1406209570405" for 10.0.2.2 at 2014-07-24 13:46:12 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "_"=>"1406209570405"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (65.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (31.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (136.2ms) Completed 200 OK in 443ms (Views: 435.3ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-24 13:46:12 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 13:46:13 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-07-24 13:46:19 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.3ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.7ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (335.1ms)  (1.5ms) SELECT COUNT(*) FROM "people"  (1.8ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.6ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (14.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (522.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 878ms (Views: 829.2ms | ActiveRecord: 19.4ms) Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&bSortable_8=false&_=1406209580508" for 10.0.2.2 at 2014-07-24 13:46:20 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "bSortable_8"=>"false", "_"=>"1406209580508"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.3ms) SELECT "people".* FROM "people" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 9ms (Views: 2.7ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 13:46:21 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:46:22 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.5ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (514.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (956.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1004.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1351ms (Views: 1341.5ms | ActiveRecord: 5.8ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:24 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 13:46:24 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 13:46:24 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-07-24 13:46:28 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (1.6ms) Completed 200 OK in 325ms (Views: 317.2ms | ActiveRecord: 2.9ms) Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/city_id/state_id/1" for 10.0.2.2 at 2014-07-24 13:46:32 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"city_id", "dependency_field"=>"state_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE (state_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (0.4ms) Completed 200 OK in 300ms (Views: 293.4ms | ActiveRecord: 2.9ms) Started GET "/admin/cities" for 10.0.2.2 at 2014-07-24 13:46:56 +0000 Processing by Admin::CitiesController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (16.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (157.7ms)  (1.1ms) SELECT COUNT(*) FROM "cities" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.7ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (47.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (85.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (423.6ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 769ms (Views: 734.1ms | ActiveRecord: 11.7ms) Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:46:57 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-24 13:46:57 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-24 13:46:57 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406209617375" for 10.0.2.2 at 2014-07-24 13:46:58 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "_"=>"1406209617375"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') ORDER BY cities.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (44.8ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (125.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (59.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (132.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (129.0ms) Completed 200 OK in 1574ms (Views: 1560.9ms | ActiveRecord: 9.3ms) Started GET "/admin/cities/2/edit" for 10.0.2.2 at 2014-07-24 13:47:06 +0000 Processing by Admin::CitiesController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", "2"]] Rendered admin/cities/edit.html.haml within layouts/carnival/admin (1.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 356ms (Views: 345.5ms | ActiveRecord: 5.6ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:06 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:07 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:07 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:07 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:07 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:08 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:08 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:09 +0000 Started GET "/admin/states/2/edit" for 10.0.2.2 at 2014-07-24 13:47:27 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "2"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.3ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 2]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (218.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (409.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (449.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (484.4ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 831ms (Views: 805.4ms | ActiveRecord: 12.8ms) Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:47:31 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-24 13:51:30 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (5.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (94.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (218.9ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 551ms (Views: 530.9ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:32 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:33 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:34 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:35 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:36 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:36 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:51:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:51:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:51:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:51:37 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 13:51:37 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:51:37 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-24 13:51:38 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1406209893908" for 10.0.2.2 at 2014-07-24 13:51:38 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1406209893908"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.1ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (52.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (51.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (125.2ms) Completed 200 OK in 498ms (Views: 492.1ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 13:51:38 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 13:51:39 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:51:40 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.8ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (419.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (453.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (486.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (38.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 834ms (Views: 823.4ms | ActiveRecord: 6.4ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:43 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:51:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:51:46 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:51:47 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:51:47 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 13:51:47 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 13:51:47 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:51:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:51:48 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 13:51:48 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:51:48 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-07-24 13:51:54 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (0.4ms) Completed 200 OK in 284ms (Views: 276.3ms | ActiveRecord: 2.6ms) Started GET "/" for 10.0.2.2 at 2014-07-24 13:53:08 +0000 Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.4/lib/rails/templates/rails/welcome/index.html.erb (0.7ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-07-24 13:53:11 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (98.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (223.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 718ms (Views: 598.0ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:13 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:14 +0000 Started GET "/admin/cities/6/edit" for 10.0.2.2 at 2014-07-24 13:53:14 +0000 Processing by Admin::CitiesController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", "6"]] Completed 404 Not Found in 27ms ActiveRecord::RecordNotFound - Couldn't find Admin::City with id=6: activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:199:in `raise_record_not_found_exception!' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:285:in `find_one' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:269:in `find_with_ids' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:36:in `find' activerecord-deprecated_finders (1.0.3) lib/active_record/deprecated_finders/relation.rb:122:in `find' activerecord (4.0.4) lib/active_record/querying.rb:3:in `find' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:51:in `resource' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__630536589__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:15 +0000 Started POST "/__better_errors/-621908528/variables" for 10.0.2.2 at 2014-07-24 13:53:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:53:17 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:18 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:53:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:53:18 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 13:53:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:53:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:53:19 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-07-24 13:53:19 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-07-24 13:53:19 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 13:53:19 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 13:53:20 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&_=1406209995152" for 10.0.2.2 at 2014-07-24 13:53:20 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "_"=>"1406209995152"} Carnival::AdminUser Load (4.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (38.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.8ms) Completed 200 OK in 395ms (Views: 385.1ms | ActiveRecord: 7.5ms) Started GET "/admin/citie" for 10.0.2.2 at 2014-07-24 13:53:20 +0000 ActionController::RoutingError (No route matches [GET] "/admin/citie"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (30.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (89.1ms) Started GET "/admin/cities/6/edit" for 10.0.2.2 at 2014-07-24 13:53:23 +0000 Processing by Admin::CitiesController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", "6"]] Completed 404 Not Found in 7ms ActiveRecord::RecordNotFound - Couldn't find Admin::City with id=6: activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:199:in `raise_record_not_found_exception!' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:285:in `find_one' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:269:in `find_with_ids' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:36:in `find' activerecord-deprecated_finders (1.0.3) lib/active_record/deprecated_finders/relation.rb:122:in `find' activerecord (4.0.4) lib/active_record/querying.rb:3:in `find' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:51:in `resource' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__630536589__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/83449690/variables" for 10.0.2.2 at 2014-07-24 13:53:23 +0000 Started GET "/admin/cities" for 10.0.2.2 at 2014-07-24 13:53:25 +0000 Processing by Admin::CitiesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (33.3ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (195.7ms)  (1.3ms) SELECT COUNT(*) FROM "cities" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.2ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (66.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (422.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 745ms (Views: 727.4ms | ActiveRecord: 14.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:26 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:27 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:29 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:31 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:53:31 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:53:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:53:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:53:32 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 13:53:32 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:53:32 +0000 Started GET "/admin/cities.json?scope=all&from=2014-07-01&to=2014-07-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406210008449" for 10.0.2.2 at 2014-07-24 13:53:32 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-07-01", "to"=>"2014-07-31", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "_"=>"1406210008449"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE (cities.created_at between '2014-07-01 00:00:00' and '2014-07-31 23:59:59') ORDER BY cities.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (64.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.4ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.3ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (126.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (126.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (126.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (127.3ms) Completed 200 OK in 1531ms (Views: 1520.3ms | ActiveRecord: 8.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-24 13:53:34 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 13:53:34 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 13:53:34 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-07-24 13:53:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 13:53:35 +0000 Started GET "/admin/cities/new" for 10.0.2.2 at 2014-07-24 13:53:36 +0000 Processing by Admin::CitiesController#new as HTML Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered admin/cities/new.html.haml within layouts/carnival/admin (1.1ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 335ms (Views: 324.9ms | ActiveRecord: 5.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:37 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:37 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:37 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:53:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:39 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:39 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:40 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:40 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:40 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:53:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:53:42 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:53:42 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:53:42 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:53:42 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:53:42 +0000 Started GET "/admin/cities/new" for 10.0.2.2 at 2014-07-24 13:54:09 +0000 Processing by Admin::CitiesController#new as HTML Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (42.9ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (175.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (213.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (245.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 582ms (Views: 568.9ms | ActiveRecord: 7.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:10 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:54:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:13 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:54:15 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:54:15 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 13:54:15 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 13:54:15 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 13:54:16 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::CityPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-07-24 13:54:19 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::CityPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (1.0ms) Completed 200 OK in 282ms (Views: 276.0ms | ActiveRecord: 2.8ms) Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:55:20 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (55.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (192.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (236.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (271.0ms) Completed 500 Internal Server Error in 510ms NoMethodError - undefined method `map' for nil:NilClass: /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:5:in `__project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__167729701_93892010' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__267841627__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/93046720/variables" for 10.0.2.2 at 2014-07-24 13:55:22 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:55:32 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (185.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (232.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (266.0ms) Completed 500 Internal Server Error in 477ms NoMethodError - undefined method `map' for nil:NilClass: /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:5:in `__project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__167729701_93892010' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__267841627__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/93119840/variables" for 10.0.2.2 at 2014-07-24 13:55:34 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:56:54 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (42.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (472.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (519.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (554.1ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1044ms (Views: 896.8ms | ActiveRecord: 18.8ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:56 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:56 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:57 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:57 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:57 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:57 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:57 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:56:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:58 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:58 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:59 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:56:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:57:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:57:00 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:57:00 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:57:00 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:57:00 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:57:01 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:57:01 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:57:01 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 13:57:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:57:02 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 13:57:02 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 13:57:02 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:57:02 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:58:19 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (49.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (188.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (231.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (265.8ms) Completed 500 Internal Server Error in 444ms NoMethodError - undefined method `map' for nil:NilClass: /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:5:in `__project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__167729701_93892010' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__267841627__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/94506330/variables" for 10.0.2.2 at 2014-07-24 13:58:20 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:58:30 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (184.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (230.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (265.0ms) Completed 500 Internal Server Error in 439ms NoMethodError - undefined method `map' for nil:NilClass: /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:5:in `__project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__167729701_93892010' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__267841627__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-621556018/variables" for 10.0.2.2 at 2014-07-24 13:58:31 +0000 Started POST "/__better_errors/-621556018/eval" for 10.0.2.2 at 2014-07-24 13:58:38 +0000 Started POST "/__better_errors/-621556018/eval" for 10.0.2.2 at 2014-07-24 13:58:46 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:59:11 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (34.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (161.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (193.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (227.0ms) Completed 500 Internal Server Error in 314ms NoMethodError - undefined method `map' for nil:NilClass: /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:5:in `__project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__167729701_93892010' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__267841627__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-622095638/variables" for 10.0.2.2 at 2014-07-24 13:59:12 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-07-24 13:59:23 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.0ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (75.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (516.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (573.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (607.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1036ms (Views: 939.2ms | ActiveRecord: 14.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 13:59:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 13:59:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 13:59:30 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 13:59:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 13:59:30 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 13:59:30 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 13:59:31 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 13:59:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 13:59:31 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 13:59:31 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-07-24 13:59:32 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (0.4ms) Completed 200 OK in 319ms (Views: 281.8ms | ActiveRecord: 4.8ms) Started GET "/admin/country/new" for 10.0.2.2 at 2014-07-24 14:01:56 +0000 ActionController::RoutingError (No route matches [GET] "/admin/country/new"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (57.9ms) Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:02:00 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (59.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (202.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (234.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (267.4ms) Completed 500 Internal Server Error in 364ms NoMethodError - undefined method `each' for nil:NilClass: /project/app/models/carnival/field.rb:141:in `get_associate_nested_form_mode' /project/app/models/carnival/field.rb:77:in `nested_form_modes?' /project/app/models/carnival/field.rb:84:in `nested_form_scope' /project/app/view_objects/carnival/nested_form_options.rb:126:in `populate_available_options' /project/app/view_objects/carnival/nested_form_options.rb:14:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:5:in `__project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___718645478_88406080' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__793787875__620579328' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__167729701_93892010' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__401894094__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/96428530/variables" for 10.0.2.2 at 2014-07-24 14:02:00 +0000 Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:02:30 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (49.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (2.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (112.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (263.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (379.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (601.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.3ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (83.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (226.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (983.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1021.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1066.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1481ms (Views: 1389.6ms | ActiveRecord: 18.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:33 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:02:37 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:02:37 +0000 Started GET "/admin/cities/new" for 10.0.2.2 at 2014-07-24 14:02:51 +0000 Processing by Admin::CitiesController#new as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (118.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (152.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (186.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 548ms (Views: 538.3ms | ActiveRecord: 6.6ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:53 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:02:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:02:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:02:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:02:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:02:57 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:02:57 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:02:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:02:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:02:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:02:58 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::CityPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-07-24 14:03:00 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::CityPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (1.1ms) Completed 200 OK in 303ms (Views: 282.9ms | ActiveRecord: 3.0ms) Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:03:16 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::State Load (1.6ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (2.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (172.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (287.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (376.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (81.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (170.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (691.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (765.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (798.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1117ms (Views: 1106.3ms | ActiveRecord: 8.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:18 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:03:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:03:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:03:22 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:03:22 +0000 Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:06:51 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (56.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (2.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.6ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (117.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (213.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (369.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (458.3ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (179.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (785.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (820.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (855.3ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1177ms (Views: 1165.9ms | ActiveRecord: 7.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:53 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:06:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:06:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:06:58 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:06:58 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:06:59 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:06:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:06:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:06:59 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:06:59 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:07:00 +0000 Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:07:07 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (106.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (321.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (447.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (486.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (521.3ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 939ms (Views: 852.6ms | ActiveRecord: 14.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:09 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:10 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:10 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:13 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:13 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:07:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:07:14 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:07:15 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:07:15 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:07:15 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:07:15 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:07:15 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:07:16 +0000 Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:07:43 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (124.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (296.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (421.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (460.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (496.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (46.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1043ms (Views: 908.3ms | ActiveRecord: 17.6ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:46 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:07:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:07:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:07:50 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:07:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:07:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:07:51 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:07:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:07:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:07:52 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:07:52 +0000 Started GET "/admin/countries/new" for 10.0.2.2 at 2014-07-24 14:08:40 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (313.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (436.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (476.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (510.7ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 930ms (Views: 838.7ms | ActiveRecord: 15.9ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:43 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:44 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:08:47 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:08:47 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:08:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:08:48 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:08:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:08:48 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:08:48 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:08:48 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-07-24 14:08:53 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (103.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (232.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 644ms (Views: 625.7ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:55 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:55 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:56 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:56 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:08:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:57 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:57 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:58 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:58 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:58 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:59 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:59 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:08:59 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:00 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:09:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:09:00 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:09:00 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:09:01 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:09:01 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:09:01 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1406210937549" for 10.0.2.2 at 2014-07-24 14:09:01 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "_"=>"1406210937549"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (31.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (129.6ms) Completed 200 OK in 429ms (Views: 422.8ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-07-24 14:09:02 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:09:02 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:09:02 +0000 Started GET "/admin/countries/1/edit" for 10.0.2.2 at 2014-07-24 14:09:03 +0000 Processing by Admin::CountriesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", "1"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = ? [["country_id", 1]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___104828713_93154600 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___511977068_88944790 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.9ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (3.2ms) SELECT "states".* FROM "states" WHERE (country_id = 1) Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (159.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (257.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (382.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__793787875__620579328 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (417.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (451.0ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 827ms (Views: 807.1ms | ActiveRecord: 15.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:04 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:05 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:05 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:05 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:05 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:05 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:06 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:06 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:06 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:06 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:09:06 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:07 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:07 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:07 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:07 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:07 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:08 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:08 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:08 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:09 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:09:09 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:09:09 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:09:10 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:09:10 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:09:10 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:09:10 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:09:11 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:09:11 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:09:11 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPointToPerson (20140724142218)  (0.1ms) begin transaction  (1.6ms) ALTER TABLE "points" ADD "person_id" integer SQLite3::SQLException: no such table: points: ALTER TABLE "points" ADD "person_id" integer  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPointToPerson (20140724142218)  (0.1ms) begin transaction  (1.6ms) ALTER TABLE "person" ADD "point_id" integer SQLite3::SQLException: no such table: person: ALTER TABLE "person" ADD "point_id" integer  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPointToPerson (20140724142218)  (0.1ms) begin transaction  (3.2ms) ALTER TABLE "people" ADD "point_id" integer  (0.8ms) CREATE INDEX "index_people_on_point_id" ON "people" ("point_id") SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140724142218"]]  (2.1ms) commit transaction ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:26:44 +0000 ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/admin/points/new"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (59.5ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:27:25 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 46ms SyntaxError - /project/test/dummy/app/presenters/admin/point_presenter.rb:10: syntax error, unexpected =>, expecting keyword_end :actions => [:index, :new, :edit, :show], ^ /project/test/dummy/app/presenters/admin/point_presenter.rb:10: syntax error, unexpected ',', expecting keyword_end /project/test/dummy/app/presenters/admin/point_presenter.rb:11: Can't assign to true /project/test/dummy/app/presenters/admin/point_presenter.rb:12: syntax error, unexpected =>, expecting :: or '[' or '.' :nested_form_modes => [:new] ^: app/presenters/admin/point_presenter.rb:10:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:113:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:51:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__826449721__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/93261350/variables" for 10.0.2.2 at 2014-07-24 14:27:26 +0000 Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:27:48 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 114ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.7ms) Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:28:04 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 75ms NameError - uninitialized constant Admin::Point: activesupport (4.0.4) lib/active_support/dependencies.rb:501:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:241:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:107:in `instantiate_model' /project/app/controllers/carnival/base_admin_controller.rb:9:in `generate_datatable' /project/app/controllers/carnival/base_admin_controller.rb:13:in `index' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__826449721__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__326962515__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/78199090/variables" for 10.0.2.2 at 2014-07-24 14:28:04 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:29:26 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (125.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 558ms (Views: 462.7ms | ActiveRecord: 9.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:28 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:29 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:29:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:32 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:29:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:29:33 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:29:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:29:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:29:34 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:29:34 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:29:34 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:29:34 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406212170644" for 10.0.2.2 at 2014-07-24 14:29:34 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406212170644"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 6ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.5ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:29:35 +0000 Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:29:47 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 6ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.7ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:30:03 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 128ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.3ms) Started GET "/admin/cities/new" for 10.0.2.2 at 2014-07-24 14:30:10 +0000 Processing by Admin::CitiesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.1ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (263.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__892629252_81849720 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (601.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (703.2ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (77.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (13.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.0ms) Completed 200 OK in 1574ms (Views: 1541.3ms | ActiveRecord: 10.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:13 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:30:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:30:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:30:17 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:30:18 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-07-24 14:30:18 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-07-24 14:30:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:30:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:30:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:30:19 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-07-24 14:30:19 +0000 Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:30:20 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.5ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:30:57 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 77ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.7ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:31:31 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 80ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:31:37 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 79ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:31:41 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.1ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:32:00 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.2ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:32:02 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (54.0ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:32:04 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:32:06 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms) Started GET "/admin/points/new" for 10.0.2.2 at 2014-07-24 14:32:08 +0000 Processing by Admin::PointsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.4ms) Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:32:10 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (154.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 617ms (Views: 561.2ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:32:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:16 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:32:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:32:16 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:32:16 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:32:17 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:32:17 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:32:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:32:17 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:32:18 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406212333972" for 10.0.2.2 at 2014-07-24 14:32:18 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406212333972"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 7ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.4ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:32:18 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:33:18 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (149.0ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 486ms (Views: 479.4ms | ActiveRecord: 3.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:20 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:33:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:24 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:33:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:33:25 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:33:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:33:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:33:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:33:26 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:33:26 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406212402429" for 10.0.2.2 at 2014-07-24 14:33:26 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406212402429"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 6ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:33:26 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:33:26 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:35:11 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (135.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 610ms (Views: 476.0ms | ActiveRecord: 9.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:17 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:18 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:35:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:35:18 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:35:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:35:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:35:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:35:19 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406212515977" for 10.0.2.2 at 2014-07-24 14:35:20 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406212515977"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 6ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:35:20 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:35:20 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:35:31 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (232.5ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (90.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 1321ms (Views: 1100.8ms | ActiveRecord: 7.2ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:33 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:34 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:35 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:35 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:37 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:38 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:35:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:35:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:35:39 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:35:40 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:35:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:35:40 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406212536552" for 10.0.2.2 at 2014-07-24 14:35:40 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406212536552"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (46.3ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:35:41 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:35:41 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:35:45 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (137.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (31.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 591ms (Views: 494.4ms | ActiveRecord: 10.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:47 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:35:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:35:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:35:52 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:35:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:35:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:35:52 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:35:53 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:35:53 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:35:53 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406212549460" for 10.0.2.2 at 2014-07-24 14:35:53 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406212549460"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.3ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:35:54 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 14:45:15 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (169.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 504ms (Views: 498.0ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:17 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-07-24 14:45:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:21 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-07-24 14:45:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-07-24 14:45:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-07-24 14:45:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-07-24 14:45:22 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-07-24 14:45:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-07-24 14:45:23 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-07-24 14:45:23 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-07-24 14:45:23 +0000 Started GET "/admin/points.json?sEcho=1&iColumns=3&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&_=1406213119363" for 10.0.2.2 at 2014-07-24 14:45:23 +0000 Processing by Admin::PointsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"3", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "_"=>"1406213119363"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `message' for nil:NilClass): better_errors (0.9.0) lib/better_errors/middleware.rb:113:in `log_exception' better_errors (0.9.0) lib/better_errors/middleware.rb:87:in `rescue in protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-07-24 14:45:23 +0000 Started GET "/admin/points" for 10.0.2.2 at 2014-07-24 18:03:41 +0000 Processing by Admin::PointsController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (138.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 471ms (Views: 463.6ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:41 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-07-24 18:03:43 +0000 Started GET "/" for 10.0.2.2 at 2014-08-07 17:01:27 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (9.4ms) Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-08-07 17:01:30 +0000 Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 64ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-07 17:01:31 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (3.5ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (111.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.3ms) Completed 200 OK in 1686ms (Views: 1660.5ms | ActiveRecord: 1.7ms) Started GET "/admin" for 10.0.2.2 at 2014-08-07 17:01:33 +0000 Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 1ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-07 17:01:33 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (1.5ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (32.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 297ms (Views: 295.7ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:34 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:35 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:35 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:36 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:36 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:36 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:01:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:01:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:01:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:01:41 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-07 17:01:41 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.2ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-07 17:01:46 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKPe7uJ4eJVLHpS2KPgzMORozC6Ck9Kz7GJIIYAyLQY=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 51ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKPe7uJ4eJVLHpS2KPgzMORozC6Ck9Kz7GJIIYAyLQY=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.1ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (33.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 375ms (Views: 293.6ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:50 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-07 17:01:53 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKPe7uJ4eJVLHpS2KPgzMORozC6Ck9Kz7GJIIYAyLQY=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 4ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKPe7uJ4eJVLHpS2KPgzMORozC6Ck9Kz7GJIIYAyLQY=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.8ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (33.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 381ms (Views: 299.1ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:01:56 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-07 17:02:03 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKPe7uJ4eJVLHpS2KPgzMORozC6Ck9Kz7GJIIYAyLQY=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (2.7ms) UPDATE "admin_users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["current_sign_in_at", "2014-08-07 17:02:03.357456"], ["last_sign_in_at", "2014-07-24 13:46:08.779921"], ["sign_in_count", 7], ["updated_at", "2014-08-07 17:02:03.359342"]]  (2.1ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 106ms (ActiveRecord: 6.9ms) Started GET "/admin" for 10.0.2.2 at 2014-08-07 17:02:03 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (131.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.4ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (354.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (72.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 998ms (Views: 750.7ms | ActiveRecord: 5.3ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:04 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:04 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:05 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:05 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:05 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:07 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:02:08 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:02:08 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-08-07 17:02:08 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:02:09 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:02:09 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:02:09 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1407430925872" for 10.0.2.2 at 2014-08-07 17:02:09 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1407430925872"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 110ms (Views: 102.1ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:02:10 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:02:12 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.2ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (33.9ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (33.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (335.0ms)  (1.7ms) SELECT COUNT(*) FROM "people"  (1.4ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.2ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (11.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (486.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (48.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 902ms (Views: 862.4ms | ActiveRecord: 18.5ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:16 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:16 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:17 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=10&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&mDataProp_9=9&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&sSearch_9=&bRegex_9=false&bSearchable_9=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=true&bSortable_9=false&_=1407430934589" for 10.0.2.2 at 2014-08-07 17:02:17 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"10", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "mDataProp_9"=>"9", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "sSearch_9"=>"", "bRegex_9"=>"false", "bSearchable_9"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"true", "bSortable_9"=>"false", "_"=>"1407430934589"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.9ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" INNER JOIN "professional_experiences" ON "professional_experiences"."person_id" = "people"."id" ORDER BY people.id asc LIMIT 50 OFFSET 0 SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" INNER JOIN "professional_experiences" ON "professional_experiences"."person_id" = "people"."id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 500 Internal Server Error in 85ms SQLite3::SQLException - no such column: professional_experiences.person_id: sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `prepare' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:301:in `block in exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' will_paginate (3.0.7) lib/will_paginate/active_record.rb:134:in `block in to_a' will_paginate (3.0.7) lib/will_paginate/collection.rb:96:in `create' will_paginate (3.0.7) lib/will_paginate/active_record.rb:133:in `to_a' activerecord (4.1.4) lib/active_record/relation/delegation.rb:46:in `each' /project/app/datatable/carnival/generic_datatable.rb:107:in `get_data' /project/app/datatable/carnival/generic_datatable.rb:39:in `as_json' activesupport (4.1.4) lib/active_support/json/encoding.rb:34:in `encode' activesupport (4.1.4) lib/active_support/json/encoding.rb:21:in `encode' activesupport (4.1.4) lib/active_support/core_ext/object/json.rb:37:in `to_json_with_active_support_encoder' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:96:in `block in ' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:39:in `block in _handle_render_options' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/set.rb:232:in `each' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:36:in `_handle_render_options' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:33:in `block (2 levels) in index' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:257:in `respond_to' /project/app/controllers/carnival/base_admin_controller.rb:25:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:02:19 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:02:40 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (33.6ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.3ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (393.0ms)  (1.4ms) SELECT COUNT(*) FROM "people"  (1.3ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.2ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (11.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (546.6ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1100ms (Views: 903.8ms | ActiveRecord: 26.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:43 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:43 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:44 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:44 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:46 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:47 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:47 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:48 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:48 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:02:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:02:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:02:49 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:02:49 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:02:49 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:02:49 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407430965131" for 10.0.2.2 at 2014-08-07 17:02:50 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407430965131"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.6ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 35ms (Views: 27.5ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:02:50 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:02:50 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:02:50 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:02:52 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 17:02:52 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (31.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (65.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (54.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (174.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (761.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1183.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1220.0ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (47.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1597ms (Views: 1586.9ms | ActiveRecord: 6.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:55 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:55 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:55 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:56 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:02:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:57 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:57 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:58 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:58 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:58 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:59 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:59 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:59 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:02:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:03:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:03:00 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:03:00 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:03:00 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:03:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:03:01 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:03:01 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:03:01 +0000 Started POST "/admin/people" for 10.0.2.2 at 2014-08-07 17:03:16 +0000 Processing by Admin::PeopleController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_person"=>{"name"=>"Diego Nakamashi", "email"=>"comprador@lb.com", "country_id"=>"", "zipcode"=>"", "state_id"=>"", "city_id"=>"", "number"=>"", "address"=>"Rua Major Dantas Cortez%2C 67", "address_complement"=>"Torre 3%2C Apartamento 124", "employed"=>"0", "person_history_attributes"=>{"id"=>"", "_destroy"=>"false", "history"=>""}}, "commit"=>"Criar"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: person_history_attributes Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (5.8ms) INSERT INTO "people" ("address", "address_complement", "created_at", "email", "employed", "name", "number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["address", "Rua Major Dantas Cortez%2C 67"], ["address_complement", "Torre 3%2C Apartamento 124"], ["created_at", "2014-08-07 17:03:16.897109"], ["email", "comprador@lb.com"], ["employed", "f"], ["name", "Diego Nakamashi"], ["number", ""], ["updated_at", "2014-08-07 17:03:16.897109"]]  (2.7ms) commit transaction Redirected to http://localhost:3021/admin/people Completed 302 Found in 21ms (ActiveRecord: 9.9ms) Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:03:16 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.9ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (296.5ms)  (1.4ms) SELECT COUNT(*) FROM "people"  (1.3ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.2ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (442.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 788ms (Views: 773.4ms | ActiveRecord: 12.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:18 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:03:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:23 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:03:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:03:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:03:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:03:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:03:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:03:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:03:25 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431000438" for 10.0.2.2 at 2014-08-07 17:03:25 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431000438"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.4ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:03:25 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:03:25 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:03:26 +0000 Started GET "/admin/people.json?scope=unemployed&sEcho=2&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431000439" for 10.0.2.2 at 2014-08-07 17:06:32 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"unemployed", "sEcho"=>"2", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431000439"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Admin::Person Load (1.3ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" WHERE (employed = 'f') ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 11ms (Views: 3.6ms | ActiveRecord: 4.2ms) Started GET "/admin/people.json?scope=all&sEcho=3&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431000440" for 10.0.2.2 at 2014-08-07 17:06:33 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"3", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431000440"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.3ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 3.1ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:06:42 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:06:43 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 17:06:43 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (110.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (698.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (735.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (771.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1212ms (Views: 1203.0ms | ActiveRecord: 5.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:45 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:06:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:50 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:06:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:06:51 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:06:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:06:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:06:52 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:06:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:06:53 +0000 Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/state_id/country_id/1" for 10.0.2.2 at 2014-08-07 17:06:59 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"state_id", "dependency_field"=>"country_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE (country_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (1.6ms) Completed 200 OK in 329ms (Views: 322.3ms | ActiveRecord: 2.7ms) Started GET "/admin/carnival-base/load_dependent_select_options/Admin::PersonPresenter/city_id/state_id/1" for 10.0.2.2 at 2014-08-07 17:07:01 +0000 Processing by Carnival::BaseAdminController#load_dependent_select_options as */* Parameters: {"presenter"=>"Admin::PersonPresenter", "field"=>"city_id", "dependency_field"=>"state_id", "dependency_value"=>"1"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE (state_id = '1') Rendered /project/app/views/carnival/base_admin/load_dependent_select_options.html.haml (0.4ms) Completed 200 OK in 312ms (Views: 304.6ms | ActiveRecord: 3.3ms) Started POST "/admin/people" for 10.0.2.2 at 2014-08-07 17:07:06 +0000 Processing by Admin::PeopleController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_person"=>{"name"=>"Diego Nakamashi", "email"=>"comprador@lb.com", "country_id"=>"1", "zipcode"=>"", "state_id"=>"1", "city_id"=>"1", "number"=>"", "address"=>"Rua Major Dantas Cortez%2C 67", "address_complement"=>"Torre 3%2C Apartamento 124", "employed"=>"0", "person_history_attributes"=>{"id"=>"", "_destroy"=>"false", "history"=>""}}, "commit"=>"Criar"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: person_history_attributes Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction SQL (4.9ms) INSERT INTO "people" ("address", "address_complement", "city_id", "country_id", "created_at", "email", "employed", "name", "number", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["address", "Rua Major Dantas Cortez%2C 67"], ["address_complement", "Torre 3%2C Apartamento 124"], ["city_id", 1], ["country_id", 1], ["created_at", "2014-08-07 17:07:06.365302"], ["email", "comprador@lb.com"], ["employed", "f"], ["name", "Diego Nakamashi"], ["number", ""], ["state_id", 1], ["updated_at", "2014-08-07 17:07:06.365302"]]  (2.9ms) commit transaction Redirected to http://localhost:3021/admin/people Completed 302 Found in 20ms (ActiveRecord: 9.8ms) Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:07:06 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.2ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (295.3ms)  (1.3ms) SELECT COUNT(*) FROM "people"  (1.1ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.2ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (442.2ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 775ms (Views: 761.7ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:07 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:08 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:08 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:08 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:08 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:09 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:09 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:07:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:10 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:12 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:13 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:13 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:07:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:07:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:07:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:07:14 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:07:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:07:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:07:14 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431229967" for 10.0.2.2 at 2014-08-07 17:07:15 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431229967"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.4ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 11ms (Views: 3.3ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:07:15 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:07:15 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:07:15 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:07:48 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 59ms SyntaxError - /project/test/dummy/app/presenters/admin/person_presenter.rb:31: syntax error, unexpected tIDENTIFIER, expecting keyword_end :position => {line: 2, size: 3} field :city, ^ /project/test/dummy/app/presenters/admin/person_presenter.rb:32: syntax error, unexpected =>, expecting :: or '[' or '.' :actions => [:index, :csv, :pdf, :new, :edit, :show], ^ /project/test/dummy/app/presenters/admin/person_presenter.rb:32: syntax error, unexpected ',', expecting keyword_end /project/test/dummy/app/presenters/admin/person_presenter.rb:33: syntax error, unexpected ',', expecting keyword_end: app/presenters/admin/person_presenter.rb:31:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:121:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:115:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:8:in `generate_datatable' /project/app/controllers/carnival/base_admin_controller.rb:17:in `index' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/102090230/variables" for 10.0.2.2 at 2014-08-07 17:07:49 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:08:16 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.7ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (41.8ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (32.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (384.4ms)  (3.1ms) SELECT COUNT(*) FROM "people"  (1.4ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.9ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (540.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1079ms (Views: 886.8ms | ActiveRecord: 28.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:08:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:23 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:08:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:08:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:08:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:08:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:08:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:08:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:08:25 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431300743" for 10.0.2.2 at 2014-08-07 17:08:25 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431300743"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "people" Admin::Person Load (2.1ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 35ms (Views: 28.0ms | ActiveRecord: 5.0ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:08:26 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:08:26 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:08:26 +0000 Started GET "/admin/people" for 10.0.2.2 at 2014-08-07 17:09:08 +0000 Processing by Admin::PeopleController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (266.6ms)  (1.5ms) SELECT COUNT(*) FROM "people"  (1.1ms) SELECT COUNT(*) FROM "people" WHERE (employed = 't')  (1.3ms) SELECT COUNT(*) FROM "people" WHERE (employed = 'f') Rendered /project/app/views/carnival/shared/_scope.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (412.6ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 803ms (Views: 789.1ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:10 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:10 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:09:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:13 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:14 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:15 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:15 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:09:15 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:09:15 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:09:16 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:09:16 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:09:16 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:09:16 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:09:16 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431352109" for 10.0.2.2 at 2014-08-07 17:09:17 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431352109"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.5ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "person_histories" ON "person_histories"."person_id" = "people"."id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 3.0ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:09:17 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:09:17 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:09:17 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:10:09 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 17:10:10 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (66.0ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.1ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (143.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (742.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (789.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (823.8ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1213ms (Views: 1198.5ms | ActiveRecord: 11.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:12 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:10:17 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:10:17 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:10:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:10:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:10:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:10:18 +0000 Started GET "/admin/people.json?scope=all&sEcho=1&iColumns=9&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&mDataProp_8=8&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&sSearch_8=&bRegex_8=false&bSearchable_8=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=true&bSortable_8=false&_=1407431423382" for 10.0.2.2 at 2014-08-07 17:10:23 +0000 Processing by Admin::PeopleController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"9", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "mDataProp_8"=>"8", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "sSearch_8"=>"", "bRegex_8"=>"false", "bSearchable_8"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"true", "bSortable_8"=>"false", "_"=>"1407431423382"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "people" Admin::Person Load (1.9ms) SELECT "people".* FROM "people" INNER JOIN "countries" ON "countries"."id" = "people"."country_id" INNER JOIN "states" ON "states"."id" = "people"."state_id" INNER JOIN "cities" ON "cities"."id" = "people"."city_id" ORDER BY people.id asc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 349ms (Views: 159.6ms | ActiveRecord: 19.6ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:10:26 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:10:36 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.4ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (116.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (560.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (608.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (645.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (11.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1035ms (Views: 1014.9ms | ActiveRecord: 15.3ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:37 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:39 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:39 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:10:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:40 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:40 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:40 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:41 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:41 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:42 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:42 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:10:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:10:43 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:10:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:10:43 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:10:43 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:10:43 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:10:44 +0000 Admin::Company Load (12.4ms) SELECT "companies".* FROM "companies" Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:20:39 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (102.0ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (90.9ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.8ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.0ms) Admin::Company Load (2.4ms) SELECT "companies".* FROM "companies" INNER JOIN "professional_experiences" ON "companies"."id" = "professional_experiences"."company_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "companies".* FROM "companies" INNER JOIN "professional_experiences" ON "companies"."id" = "professional_experiences"."company_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_field.html.haml (138.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (720.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1077.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1197.7ms) Completed 500 Internal Server Error in 1553ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "companies".* FROM "companies" INNER JOIN "professional_experiences" ON "companies"."id" = "professional_experiences"."company_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:356:in `block in options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:355:in `options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:405:in `options_from_collection_for_select' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' simple_form (3.0.2) lib/simple_form/inputs/collection_select_input.rb:7:in `input' /project/app/inputs/admin_relationship_select_input.rb:3:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml__125425884_102262340' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___1064354802_102056640' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___1064354802_102056640' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___1064354802_102056640' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__522952653_100887690' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__522952653_100887690' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__131367924_102267980' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/102625100/variables" for 10.0.2.2 at 2014-08-07 17:20:41 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:22:44 +0000 ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (75.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.2ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (88.5ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.2ms) Admin::Job Load (2.7ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_field.html.haml (135.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (724.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1068.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1189.9ms) Completed 500 Internal Server Error in 1543ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:356:in `block in options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:355:in `options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:405:in `options_from_collection_for_select' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' simple_form (3.0.2) lib/simple_form/inputs/collection_select_input.rb:7:in `input' /project/app/inputs/admin_relationship_select_input.rb:3:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml__785667794_101544620' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___196918476_101347710' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___196918476_101347710' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___196918476_101347710' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__633241234_100404280' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__633241234_100404280' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__870505335_101545860' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/102067570/variables" for 10.0.2.2 at 2014-08-07 17:22:46 +0000 ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_admin_user_notifications_on_admin_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_user_notifications_on_admin_user_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_admin_user_notifications_on_notification_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_user_notifications_on_notification_id' AND type='index'  (1.5ms)  SELECT sql FROM sqlite_master WHERE name='index_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_users_on_reset_password_token' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_admin_users_on_email' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_cities_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_cities_on_state_id' AND type='index'   (1.3ms) SELECT sql FROM sqlite_master WHERE name='index_cities_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_cities_on_country_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_companies_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_companies_on_city_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_companies_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_companies_on_state_id' AND type='index'  (1.4ms)  SELECT sql FROM sqlite_master WHERE name='index_companies_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_companies_on_country_id' AND type='index'   (1.6ms) SELECT sql FROM sqlite_master WHERE name='index_installments_credit_cads_on_credit_card_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_installments_credit_cads_on_credit_card_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_installments_credit_cads_on_installment_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_installments_credit_cads_on_installment_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_people_on_point_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_point_id' AND type='index'  (1.2ms)  SELECT sql FROM sqlite_master WHERE name='index_people_on_city_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_city_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_people_on_state_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_state_id' AND type='index'  (1.3ms)  SELECT sql FROM sqlite_master WHERE name='index_people_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_people_on_country_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_person_histories_on_person_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_person_histories_on_person_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_professional_experiences_on_job_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_professional_experiences_on_job_id' AND type='index'   (1.1ms) SELECT sql FROM sqlite_master WHERE name='index_professional_experiences_on_company_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_professional_experiences_on_company_id' AND type='index'  (1.1ms)  SELECT sql FROM sqlite_master WHERE name='index_professional_experiences_on_people_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_professional_experiences_on_people_id' AND type='index'   (1.2ms) SELECT sql FROM sqlite_master WHERE name='index_states_on_country_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_states_on_country_id' AND type='index' Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:24:51 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (106.6ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (103.1ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.2ms) Admin::Job Load (2.4ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_field.html.haml (131.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (726.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1086.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1204.4ms) Completed 500 Internal Server Error in 1563ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:356:in `block in options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:355:in `options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:405:in `options_from_collection_for_select' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' simple_form (3.0.2) lib/simple_form/inputs/collection_select_input.rb:7:in `input' /project/app/inputs/admin_relationship_select_input.rb:3:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml___154257763_95454250' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___794911964_88656140' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___794911964_88656140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___845998777_95500570' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/95787260/variables" for 10.0.2.2 at 2014-08-07 17:24:53 +0000 Started POST "/__better_errors/95787260/variables" for 10.0.2.2 at 2014-08-07 17:25:13 +0000 Started POST "/__better_errors/95787260/variables" for 10.0.2.2 at 2014-08-07 17:25:16 +0000 Started POST "/__better_errors/95787260/variables" for 10.0.2.2 at 2014-08-07 17:25:21 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:26:37 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (101.0ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.8ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (38.4ms) Admin::Job Load (2.9ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_field.html.haml (97.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (595.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (631.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (668.1ms) Completed 500 Internal Server Error in 931ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:356:in `block in options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:355:in `options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:405:in `options_from_collection_for_select' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' simple_form (3.0.2) lib/simple_form/inputs/collection_select_input.rb:7:in `input' /project/app/inputs/admin_relationship_select_input.rb:3:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml___154257763_95454250' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___794911964_88656140' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___794911964_88656140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___845998777_95500570' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/95541220/variables" for 10.0.2.2 at 2014-08-07 17:26:38 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:26:56 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.9ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.5ms) Admin::City Load (0.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (2.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.5ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.5ms) Admin::Job Load (2.2ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_field.html.haml (90.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (551.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (584.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (619.9ms) Completed 500 Internal Server Error in 928ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:356:in `block in options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:355:in `options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:405:in `options_from_collection_for_select' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' simple_form (3.0.2) lib/simple_form/inputs/collection_select_input.rb:7:in `input' /project/app/inputs/admin_relationship_select_input.rb:3:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml___154257763_95454250' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___1017871719_95251470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___794911964_88656140' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___794911964_88656140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___845998777_95500570' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-621454608/variables" for 10.0.2.2 at 2014-08-07 17:26:57 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:27:20 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (100.5ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (91.2ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (38.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (40.0ms) Admin::Job Load (2.5ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_field.html.haml (132.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (709.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1069.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1192.0ms) Completed 500 Internal Server Error in 1589ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:356:in `block in options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:355:in `options_for_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:405:in `options_from_collection_for_select' actionview (4.1.4) lib/action_view/helpers/tags/collection_select.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:204:in `collection_select' actionview (4.1.4) lib/action_view/helpers/form_options_helper.rb:791:in `collection_select' simple_form (3.0.2) lib/simple_form/inputs/collection_select_input.rb:7:in `input' /project/app/inputs/admin_relationship_select_input.rb:3:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml___206180571_99157990' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:22 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:26 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:27 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:28 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:29 +0000 Admin::Job Load (1.5ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:32 +0000 Admin::Job Load (2.4ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:34 +0000 Admin::Job Load (2.5ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:35 +0000 Admin::Job Load (2.2ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:42 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:42 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:47 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:49 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:50 +0000 Started POST "/__better_errors/99498640/variables" for 10.0.2.2 at 2014-08-07 17:27:52 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:28:38 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 49ms SyntaxError - /project/test/dummy/app/presenters/admin/person_presenter.rb:53: syntax error, unexpected =>, expecting keyword_end :position => {line: 2, size: 3} ^: app/presenters/admin/person_presenter.rb:53:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:121:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:115:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:65:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-621921878/variables" for 10.0.2.2 at 2014-08-07 17:28:39 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:28:43 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.7ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.3ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.6ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (38.9ms) Admin::Job Load (2.3ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (118.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (599.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (636.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (676.0ms) Completed 500 Internal Server Error in 982ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' activerecord (4.1.4) lib/active_record/relation/delegation.rb:46:in `map' /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:7:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273_99895630' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-620109618/variables" for 10.0.2.2 at 2014-08-07 17:28:45 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:29:03 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.4ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.2ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.8ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.4ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (40.4ms) Admin::Job Load (2.9ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (161.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (628.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (660.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (694.9ms) Completed 500 Internal Server Error in 952ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' activerecord (4.1.4) lib/active_record/relation/delegation.rb:46:in `map' /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:7:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273_99895630' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92398300/variables" for 10.0.2.2 at 2014-08-07 17:29:05 +0000 Started GET "/admin/people/2/edit" for 10.0.2.2 at 2014-08-07 17:29:12 +0000 Processing by Admin::PeopleController#edit as HTML Parameters: {"id"=>"2"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Person Load (1.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (57.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (67.5ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Admin::State Load (1.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.4ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.4ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.8ms) Admin::Job Load (2.3ms) SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? [[nil, 2]] SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ? Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (461.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (495.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (536.7ms) Completed 500 Internal Server Error in 628ms ActiveRecord::StatementInvalid - SQLite3::SQLException: no such column: professional_experiences.person_id: SELECT "jobs".* FROM "jobs" INNER JOIN "professional_experiences" ON "jobs"."id" = "professional_experiences"."job_id" WHERE "professional_experiences"."person_id" = ?: activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:362:in `translate_exception_class' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:375:in `rescue in log' activerecord (4.1.4) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `log' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query' activerecord (4.1.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:510:in `select' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.1.4) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.1.4) lib/active_record/relation.rb:604:in `exec_queries' activerecord (4.1.4) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.1.4) lib/active_record/relation.rb:486:in `load' activerecord (4.1.4) lib/active_record/relation.rb:231:in `to_a' bullet (4.10.0) lib/bullet/active_record41.rb:10:in `to_a' activerecord (4.1.4) lib/active_record/associations/has_many_through_association.rb:211:in `find_target' activerecord (4.1.4) lib/active_record/associations/collection_association.rb:380:in `load_target' bullet (4.10.0) lib/bullet/active_record41.rb:87:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:44:in `load_target' activerecord (4.1.4) lib/active_record/associations/collection_proxy.rb:947:in `to_ary' activerecord (4.1.4) lib/active_record/relation/delegation.rb:46:in `map' /project/app/view_objects/carnival/nested_form_options.rb:121:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:7:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273_99895630' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/98970280/variables" for 10.0.2.2 at 2014-08-07 17:29:13 +0000 Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:32:25 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (3.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (86.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (252.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (38.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.0ms) Completed 200 OK in 1227ms (Views: 1154.7ms | ActiveRecord: 9.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:27 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:30 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:32 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:32 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:32 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:32:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:32:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:32:33 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:32:34 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:32:34 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:32:34 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:32:34 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407432749462" for 10.0.2.2 at 2014-08-07 17:32:34 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407432749462"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.6ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 87ms (Views: 77.2ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:32:35 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:32:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:32:37 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:32:38 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (127.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (213.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (251.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (287.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 628ms (Views: 618.8ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:39 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:39 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:40 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:40 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:40 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:41 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:32:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:43 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:44 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:44 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:32:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:32:45 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:32:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:32:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:32:45 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:32:46 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:32:46 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:32:46 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:32:46 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:33:13 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (351.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (445.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (485.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (520.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1033ms (Views: 874.3ms | ActiveRecord: 14.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:15 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:16 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:16 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:16 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:17 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:17 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:18 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:19 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:20 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:33:20 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:33:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:33:21 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:33:21 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:33:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:33:22 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:33:22 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:33:22 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:33:29 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"Teste", "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"Testand"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: credit_cards_attributes Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.1ms) begin transaction SQL (3.3ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:33:30.105202"], ["name", "Teste"], ["updated_at", "2014-08-07 17:33:30.105202"]]  (2.5ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 22ms (ActiveRecord: 7.3ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:33:30 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (66.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (212.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 560ms (Views: 542.8ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:31 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:32 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:32 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:33:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:33 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:34 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:35 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:36 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:36 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:33:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:33:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:33:37 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:33:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:33:37 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:33:38 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:33:38 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407432813613" for 10.0.2.2 at 2014-08-07 17:33:38 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407432813613"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 13ms (Views: 3.6ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:33:38 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:33:38 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:33:39 +0000 Started GET "/admin/installments/1" for 10.0.2.2 at 2014-08-07 17:34:09 +0000 Processing by Admin::InstallmentsController#show as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/base_admin/show.html.haml within layouts/carnival/admin (97.8ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 439ms (Views: 429.6ms | ActiveRecord: 5.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:15 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:34:16 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:34:16 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:34:16 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:34:16 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:34:17 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:34:17 +0000 Started GET "/admin/installments/1/edit" for 10.0.2.2 at 2014-08-07 17:34:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 1]] Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (144.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (229.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (264.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (302.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 648ms (Views: 637.3ms | ActiveRecord: 7.7ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:21 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:25 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:34:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:34:26 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:34:26 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:34:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:34:27 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:34:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:34:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:34:27 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:34:28 +0000 Started PATCH "/admin/installments/1" for 10.0.2.2 at 2014-08-07 17:34:57 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"Teste", "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"1", "name"=>""}, "1"=>{"id"=>"", "_destroy"=>"false", "name"=>"Diego Nakamashi"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"1"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: credit_cards_attributes Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 12ms (ActiveRecord: 3.1ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:34:57 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (69.8ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (225.2ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 575ms (Views: 568.3ms | ActiveRecord: 4.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:34:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:00 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:02 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:03 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:03 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:35:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:35:04 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:35:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:35:05 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:35:05 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:35:05 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407432900780" for 10.0.2.2 at 2014-08-07 17:35:05 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407432900780"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 10ms (Views: 2.7ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:35:06 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:35:06 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:35:06 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:35:47 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:35:48 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:35:50 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (69.1ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (279.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (427.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (463.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (501.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1009ms (Views: 852.8ms | ActiveRecord: 14.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:51 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:35:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:35:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:35:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:35:57 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:35:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:35:57 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:35:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:35:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:35:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:35:58 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:36:05 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"Testando", "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"TEste"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: credit_cards_attributes Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.1ms) begin transaction SQL (4.1ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:36:05.537285"], ["name", "Testando"], ["updated_at", "2014-08-07 17:36:05.537285"]]  (2.3ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 20ms (ActiveRecord: 8.6ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:36:05 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (66.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (196.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 549ms (Views: 530.3ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:11 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:11 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:36:12 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:36:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:36:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:36:13 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:36:13 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:36:13 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407432968894" for 10.0.2.2 at 2014-08-07 17:36:13 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407432968894"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 11ms (Views: 3.4ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:36:14 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:36:14 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:36:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:36:38 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:36:42 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:36:42 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (53.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (286.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (395.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (433.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (474.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (56.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1041ms (Views: 877.3ms | ActiveRecord: 15.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:44 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:36:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:36:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:36:50 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:36:50 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:36:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:36:51 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:36:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:36:52 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:36:52 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:36:52 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:36:59 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"Teste", "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"sdasdasdasd"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: credit_cards_attributes Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.1ms) begin transaction SQL (5.1ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:36:59.912659"], ["name", "Teste"], ["updated_at", "2014-08-07 17:36:59.912659"]]  (8.1ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 25ms (ActiveRecord: 14.9ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:36:59 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (67.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (197.7ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (67.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 607ms (Views: 589.3ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:01 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:01 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:01 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:01 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:02 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:02 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:02 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:37:03 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:03 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:03 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:04 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:04 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:05 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:05 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:06 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:06 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:37:06 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:37:07 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:37:07 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:37:07 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:37:07 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:37:07 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:37:08 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433023324" for 10.0.2.2 at 2014-08-07 17:37:08 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433023324"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 11ms (Views: 3.7ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:37:08 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:37:08 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:37:09 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:38:43 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:38:45 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:38:45 +0000 SyntaxError - /project/test/dummy/app/controllers/admin/installments_controller.rb:6: syntax error, unexpected ':', expecting ']' ...it_cards_attributes => [:name :_destroy], credit_card_ids: [... ... ^: app/controllers/admin/installments_controller.rb:6:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/dependencies.rb:552:in `get' activesupport (4.1.4) lib/active_support/dependencies.rb:583:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-639297868/variables" for 10.0.2.2 at 2014-08-07 17:38:45 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:39:06 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (332.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (427.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (469.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (504.7ms) Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1042ms (Views: 886.8ms | ActiveRecord: 15.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:08 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:08 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:08 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:08 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:09 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:09 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:10 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:10 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:10 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:12 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:13 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:13 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:13 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:39:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:39:14 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:39:14 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:39:14 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:39:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:39:15 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:39:15 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:39:15 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:39:21 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"Tesaasaad", "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"cc1"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: id, _destroy Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.1ms) begin transaction SQL (4.6ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:39:22.223000"], ["name", "Tesaasaad"], ["updated_at", "2014-08-07 17:39:22.223000"]] SQL (0.5ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:39:22.229509"], ["name", "cc1"], ["updated_at", "2014-08-07 17:39:22.229509"]] SQL (1.4ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:39:22.237341"], ["credit_card_id", 1], ["installment_id", 4], ["updated_at", "2014-08-07 17:39:22.237341"]]  (3.0ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 32ms (ActiveRecord: 11.4ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:39:22 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (68.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (198.6ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 559ms (Views: 540.6ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:23 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:23 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:23 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:23 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:23 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:24 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:24 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:24 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:24 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:25 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:25 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:25 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:26 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:26 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:27 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:28 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:28 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:39:29 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:39:29 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:39:29 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:39:30 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:39:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:39:30 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433165601" for 10.0.2.2 at 2014-08-07 17:39:30 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433165601"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 60ms (Views: 52.1ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:39:31 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:39:31 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:39:31 +0000 Started GET "/admin/installments/4/edit" for 10.0.2.2 at 2014-08-07 17:39:35 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.9ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::CreditCard Load (3.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 4]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (244.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (341.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (377.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (410.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 836ms (Views: 820.1ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:39:36 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:36 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:36 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:37 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:37 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:37 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:37 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:38 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:39 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:39 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:39 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:40 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:40 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:40 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:41 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:39:42 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:39:42 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:39:42 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:39:42 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:39:43 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:39:43 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:39:43 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:39:43 +0000 Started PATCH "/admin/installments/4" for 10.0.2.2 at 2014-08-07 17:39:51 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"Tesaasaad", "credit_cards_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"false", "name"=>"cc1"}, "1"=>{"id"=>"", "_destroy"=>"false", "name"=>"cc2"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 4]] Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction SQL (2.9ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:39:51.481485"], ["name", "cc1"], ["updated_at", "2014-08-07 17:39:51.481485"]] SQL (1.2ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:39:51.486827"], ["credit_card_id", 2], ["installment_id", 4], ["updated_at", "2014-08-07 17:39:51.486827"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:39:51.490400"], ["name", "cc2"], ["updated_at", "2014-08-07 17:39:51.490400"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:39:51.492340"], ["credit_card_id", 3], ["installment_id", 4], ["updated_at", "2014-08-07 17:39:51.492340"]]  (2.5ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 30ms (ActiveRecord: 9.8ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:39:51 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (82.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (209.7ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 545ms (Views: 537.4ms | ActiveRecord: 4.8ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:53 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:54 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:39:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:57 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:57 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:39:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:39:58 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:39:58 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:39:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:39:59 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:39:59 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:39:59 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433194831" for 10.0.2.2 at 2014-08-07 17:39:59 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433194831"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 166ms (Views: 158.6ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:40:00 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:40:00 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:40:00 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:40:06 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (140.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (222.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (268.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (301.1ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 689ms (Views: 679.4ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:07 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:08 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:08 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:08 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:40:12 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:40:13 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:40:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:40:13 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:40:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:40:14 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:40:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:40:14 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:40:23 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"teste2"}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.1ms) begin transaction SQL (2.9ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:40:23.995177"], ["name", "teste2"], ["updated_at", "2014-08-07 17:40:23.995177"]]  (2.1ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 14ms (ActiveRecord: 6.4ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:40:24 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (66.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (197.0ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (56.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 598ms (Views: 591.9ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:29 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:40:31 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:40:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:40:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:40:31 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:40:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:40:32 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433227373" for 10.0.2.2 at 2014-08-07 17:40:32 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433227373"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 150ms (Views: 143.1ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:40:32 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:40:32 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:40:33 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:40:35 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:40:36 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (194.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (276.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (326.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (361.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 694ms (Views: 686.1ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:37 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:38 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:39 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:39 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:39 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:40:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:40 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:40 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:41 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:41 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:42 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:40:43 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:40:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:40:43 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:40:43 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:40:44 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:40:44 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:40:44 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:40:44 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:40:45 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:41:46 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.5ms) Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (205.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (309.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (343.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (376.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 713ms (Views: 704.5ms | ActiveRecord: 5.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:48 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:41:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:52 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:41:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:41:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:41:53 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:41:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:41:53 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:41:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:41:54 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:41:54 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:41:54 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:42:02 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"tt2", "credit_card_ids"=>["", "1", "2"]}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (5.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit Admin::CreditCard Load (4.7ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" IN (1, 2)  (0.1ms) begin transaction SQL (3.1ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:42:02.609168"], ["name", "tt2"], ["updated_at", "2014-08-07 17:42:02.609168"]] SQL (1.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:42:02.614921"], ["credit_card_id", 1], ["installment_id", 6], ["updated_at", "2014-08-07 17:42:02.614921"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:42:02.617576"], ["credit_card_id", 2], ["installment_id", 6], ["updated_at", "2014-08-07 17:42:02.617576"]]  (2.6ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 40ms (ActiveRecord: 16.6ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:42:02 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (69.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (200.3ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (50.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 589ms (Views: 582.3ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:03 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:04 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:04 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:04 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:04 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:04 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:05 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:05 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:05 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:06 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:07 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:08 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:08 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:09 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:09 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:09 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:42:09 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:42:10 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:42:10 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:42:10 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:42:10 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:42:11 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433326206" for 10.0.2.2 at 2014-08-07 17:42:11 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433326206"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 303ms (Views: 295.4ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:42:11 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:42:12 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:42:12 +0000 Started GET "/admin/installments/6/edit" for 10.0.2.2 at 2014-08-07 17:42:14 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 6]] Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (389.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (476.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (509.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (542.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 892ms (Views: 877.8ms | ActiveRecord: 8.6ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:16 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:16 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:18 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:20 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:42:21 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:42:21 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:42:21 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:42:22 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:42:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:42:22 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:42:22 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:42:23 +0000 Started GET "/admin/installments/6/edit" for 10.0.2.2 at 2014-08-07 17:42:33 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 6]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (409.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (501.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (535.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (570.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 906ms (Views: 894.0ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:42:40 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:42:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:42:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:42:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:42:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:42:41 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:42:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:42:42 +0000 Started PATCH "/admin/installments/6" for 10.0.2.2 at 2014-08-07 17:42:47 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"tt2", "credit_card_ids"=>["", "1", "2"], "credit_cards_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"false", "name"=>"cc1 edit"}, "1"=>{"id"=>"2", "_destroy"=>"false", "name"=>"cc1"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"6"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" IN (1, 2) Admin::CreditCard Load (0.1ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 6]] SQL (2.0ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:42:47.743390"], ["name", "cc1 edit"], ["updated_at", "2014-08-07 17:42:47.743390"]] SQL (1.5ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:42:47.747617"], ["credit_card_id", 4], ["installment_id", 6], ["updated_at", "2014-08-07 17:42:47.747617"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:42:47.750603"], ["name", "cc1"], ["updated_at", "2014-08-07 17:42:47.750603"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:42:47.752588"], ["credit_card_id", 5], ["installment_id", 6], ["updated_at", "2014-08-07 17:42:47.752588"]]  (2.9ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 33ms (ActiveRecord: 11.2ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:42:47 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (65.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (206.6ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 566ms (Views: 558.9ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:48 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:49 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:51 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:53 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:54 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:54 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:42:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:42:54 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:42:55 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:42:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:42:55 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:42:55 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:42:56 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:42:56 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433371188" for 10.0.2.2 at 2014-08-07 17:42:56 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433371188"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.8ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 386ms (Views: 377.4ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:42:57 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:42:57 +0000 Started GET "/admin/installments/4/edit" for 10.0.2.2 at 2014-08-07 17:42:58 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 4]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (57.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (518.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (601.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (635.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (668.7ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1012ms (Views: 996.7ms | ActiveRecord: 9.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:42:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:01 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:02 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:43:05 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:43:05 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:43:06 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:43:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:43:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:43:06 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:43:07 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:43:07 +0000 Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:43:11 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (66.6ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (195.8ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 586ms (Views: 578.7ms | ActiveRecord: 4.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:12 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:17 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:17 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:17 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:43:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:43:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:43:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:43:18 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:43:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:43:19 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433394721" for 10.0.2.2 at 2014-08-07 17:43:19 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433394721"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 344ms (Views: 337.2ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:43:20 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:43:20 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:43:20 +0000 Started GET "/admin/installments/6/edit" for 10.0.2.2 at 2014-08-07 17:43:23 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.1ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.4ms) Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 6]] Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (588.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (674.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (712.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (745.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (50.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1157ms (Views: 1145.2ms | ActiveRecord: 7.9ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:25 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:29 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:43:30 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:43:30 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:43:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:43:31 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:43:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:43:31 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:43:32 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:43:32 +0000 Started GET "/admin/installments/6/edit" for 10.0.2.2 at 2014-08-07 17:43:51 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 6]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (60.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (572.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (667.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (702.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (746.2ms) Carnival::AdminUserNotification Load (3.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1142ms (Views: 1127.1ms | ActiveRecord: 9.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:53 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:43:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:58 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:43:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:43:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:43:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:43:59 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:43:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:44:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:44:00 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:44:00 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:44:00 +0000 Started PATCH "/admin/installments/6" for 10.0.2.2 at 2014-08-07 17:44:06 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"tt2", "credit_cards_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"false", "name"=>"cc1"}, "1"=>{"id"=>"2", "_destroy"=>"false", "name"=>"cc1"}, "2"=>{"id"=>"4", "_destroy"=>"false", "name"=>"cc1 edit"}, "3"=>{"id"=>"5", "_destroy"=>"false", "name"=>"cc1 edit 2"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"6"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction SQL (2.7ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:06.409190"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:06.409190"]] SQL (1.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:06.414945"], ["credit_card_id", 6], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:06.414945"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:06.417406"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:06.417406"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:06.419026"], ["credit_card_id", 7], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:06.419026"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:06.420214"], ["name", "cc1 edit"], ["updated_at", "2014-08-07 17:44:06.420214"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:06.421627"], ["credit_card_id", 8], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:06.421627"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:06.423659"], ["name", "cc1 edit 2"], ["updated_at", "2014-08-07 17:44:06.423659"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:06.425998"], ["credit_card_id", 9], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:06.425998"]]  (2.9ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 39ms (ActiveRecord: 10.4ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:44:06 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (69.0ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (205.5ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 540ms (Views: 533.6ms | ActiveRecord: 4.0ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:07 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:08 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:08 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:08 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:09 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:12 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:13 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:44:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:44:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:44:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:44:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:44:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:44:14 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433449959" for 10.0.2.2 at 2014-08-07 17:44:14 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433449959"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 569ms (Views: 562.5ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:44:15 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:44:16 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:44:16 +0000 Started GET "/admin/installments/6/edit" for 10.0.2.2 at 2014-08-07 17:44:18 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"6"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.3ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 6]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (998.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (1125.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1161.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1194.3ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1545ms (Views: 1531.2ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:21 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:25 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:44:26 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:44:26 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:44:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:44:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:44:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:44:27 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:44:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:44:28 +0000 Started PATCH "/admin/installments/6" for 10.0.2.2 at 2014-08-07 17:44:49 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"tt2", "credit_cards_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"false", "name"=>"cc1"}, "1"=>{"id"=>"2", "_destroy"=>"false", "name"=>"cc1"}, "2"=>{"id"=>"4", "_destroy"=>"false", "name"=>"cc1 edit"}, "3"=>{"id"=>"5", "_destroy"=>"false", "name"=>"cc1"}, "4"=>{"id"=>"6", "_destroy"=>"false", "name"=>"cc1"}, "5"=>{"id"=>"7", "_destroy"=>"false", "name"=>"cc1"}, "6"=>{"id"=>"8", "_destroy"=>"false", "name"=>"cc1 edit"}, "7"=>{"id"=>"9", "_destroy"=>"false", "name"=>"cc1 edit 2"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"6"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 6]] Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: id, _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction SQL (2.8ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.183771"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:50.183771"]] SQL (1.4ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.189150"], ["credit_card_id", 10], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.189150"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.191870"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:50.191870"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.193886"], ["credit_card_id", 11], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.193886"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.195570"], ["name", "cc1 edit"], ["updated_at", "2014-08-07 17:44:50.195570"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.198047"], ["credit_card_id", 12], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.198047"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.199853"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:50.199853"]] SQL (0.9ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.201956"], ["credit_card_id", 13], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.201956"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.204228"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:50.204228"]] SQL (0.4ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.205727"], ["credit_card_id", 14], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.205727"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.207374"], ["name", "cc1"], ["updated_at", "2014-08-07 17:44:50.207374"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.209006"], ["credit_card_id", 15], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.209006"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.210185"], ["name", "cc1 edit"], ["updated_at", "2014-08-07 17:44:50.210185"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.211884"], ["credit_card_id", 16], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.211884"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:44:50.213071"], ["name", "cc1 edit 2"], ["updated_at", "2014-08-07 17:44:50.213071"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:44:50.215002"], ["credit_card_id", 17], ["installment_id", 6], ["updated_at", "2014-08-07 17:44:50.215002"]]  (3.2ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 58ms (ActiveRecord: 13.3ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:44:50 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (5.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (73.8ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (207.0ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 558ms (Views: 543.3ms | ActiveRecord: 8.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:44:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:54 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:56 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:56 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:44:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:44:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:44:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:44:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:44:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:44:58 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:44:58 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433493920" for 10.0.2.2 at 2014-08-07 17:44:58 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433493920"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.7ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 996ms (Views: 987.7ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:45:00 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:45:00 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:45:00 +0000 Admin::Installment Load (5.4ms) SELECT "installments".* FROM "installments" Admin::Installment Load (5.3ms) SELECT "installments".* FROM "installments"  (0.9ms) begin transaction SQL (2.7ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 1]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (2.6ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 2]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (2.8ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 3]]  (2.4ms) commit transaction  (0.2ms) begin transaction SQL (2.5ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 4]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (2.7ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 5]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (2.3ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 6]]  (2.0ms) commit transaction Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:45:58 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (70.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (213.0ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 781ms (Views: 615.6ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:45:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:00 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:01 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:02 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:05 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:05 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:05 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:46:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:46:06 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:46:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:46:06 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:46:07 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:46:07 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433562611" for 10.0.2.2 at 2014-08-07 17:46:07 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433562611"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 82ms (Views: 73.0ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:46:07 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:46:08 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:46:08 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:46:09 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.9ms) Admin::CreditCard Load (2.1ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (269.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (382.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (421.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (455.7ms) Carnival::AdminUserNotification Load (3.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 813ms (Views: 799.9ms | ActiveRecord: 9.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:15 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:46:16 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:46:16 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:46:17 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:46:17 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:46:17 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:46:17 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:46:18 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:46:18 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:46:34 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.6ms) Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (156.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (255.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (291.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (325.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 671ms (Views: 660.9ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:36 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:46:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:38 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:39 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:39 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:40 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:40 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:40 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:46:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:46:41 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:46:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:46:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:46:42 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:46:42 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:46:42 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:46:42 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:46:42 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:47:05 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"i1", "credit_card_ids"=>[""], "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"card1"}, "1"=>{"id"=>"", "_destroy"=>"false", "name"=>"card2"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: _destroy Unpermitted parameters: _destroy Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.0ms) begin transaction SQL (3.0ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:47:06.014412"], ["name", "i1"], ["updated_at", "2014-08-07 17:47:06.014412"]] SQL (0.4ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:47:06.019593"], ["name", "card1"], ["updated_at", "2014-08-07 17:47:06.019593"]] SQL (1.5ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:47:06.026298"], ["credit_card_id", 18], ["installment_id", 7], ["updated_at", "2014-08-07 17:47:06.026298"]] SQL (0.1ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:47:06.029652"], ["name", "card2"], ["updated_at", "2014-08-07 17:47:06.029652"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:47:06.031830"], ["credit_card_id", 19], ["installment_id", 7], ["updated_at", "2014-08-07 17:47:06.031830"]]  (2.8ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 34ms (ActiveRecord: 10.1ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:47:06 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (117.0ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (248.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 596ms (Views: 587.4ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:06 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:07 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:07 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:07 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:08 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:08 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:12 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:47:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:47:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:47:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:47:14 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:47:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:47:14 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433629677" for 10.0.2.2 at 2014-08-07 17:47:14 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433629677"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 109ms (Views: 101.8ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:47:15 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:47:15 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:47:15 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 17:47:16 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (206.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (288.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (324.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (359.6ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 692ms (Views: 682.8ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:18 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:47:23 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:47:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:47:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:47:24 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:47:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:47:24 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:47:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:47:25 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 17:47:31 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"i2", "credit_card_ids"=>["", "19"]}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) begin transaction SQL (3.3ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 17:47:32.078528"], ["name", "i2"], ["updated_at", "2014-08-07 17:47:32.078528"]] SQL (0.9ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 17:47:32.083639"], ["credit_card_id", 19], ["installment_id", 8], ["updated_at", "2014-08-07 17:47:32.083639"]]  (2.8ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 25ms (ActiveRecord: 10.0ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:47:32 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (66.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (196.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 528ms (Views: 519.8ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:33 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:33 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:34 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:35 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:35 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:36 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:38 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:38 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:47:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:47:39 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:47:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:47:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:47:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:47:40 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433655865" for 10.0.2.2 at 2014-08-07 17:47:40 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433655865"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 206ms (Views: 198.3ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:47:41 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:47:41 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:47:41 +0000 Started GET "/admin/installments/8/edit" for 10.0.2.2 at 2014-08-07 17:47:43 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"8"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 8]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::CreditCard Load (3.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 8]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (14.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (24.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (63.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (281.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (369.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (405.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (439.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 845ms (Views: 829.4ms | ActiveRecord: 10.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:44 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:47:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:47:49 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:47:50 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:47:50 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:47:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:47:50 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:47:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:47:51 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:47:51 +0000 Started PATCH "/admin/installments/8" for 10.0.2.2 at 2014-08-07 17:47:57 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"i2", "credit_card_ids"=>["", "19"], "credit_cards_attributes"=>{"0"=>{"id"=>"19", "_destroy"=>"false", "name"=>"card2 as"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"8"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 8]] Unpermitted parameters: _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = ? LIMIT 1 [["id", 19]] Admin::CreditCard Load (0.1ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 8]] SQL (1.8ms) UPDATE "credit_cards" SET "name" = ?, "updated_at" = ? WHERE "credit_cards"."id" = 19 [["name", "card2 as"], ["updated_at", "2014-08-07 17:47:58.076284"]]  (2.2ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 24ms (ActiveRecord: 8.5ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 17:47:58 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (70.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (203.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 538ms (Views: 531.6ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:47:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:04 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:04 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:48:05 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:48:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:48:05 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:48:05 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 17:48:06 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:48:06 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407433681674" for 10.0.2.2 at 2014-08-07 17:48:06 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407433681674"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 168ms (Views: 160.4ms | ActiveRecord: 4.4ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 17:48:07 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 17:48:07 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 17:48:07 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:48:08 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (14.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (354.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (437.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (473.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (508.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (57.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 902ms (Views: 889.4ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:10 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:48:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:13 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:14 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:48:15 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:48:15 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:48:15 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:48:16 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:48:16 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:48:16 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:48:16 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:48:17 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:48:17 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:51:59 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.3ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (46.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (258.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (357.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (391.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (426.8ms) Completed 500 Internal Server Error in 667ms ActionController::UrlGenerationError - No route matches {:action=>"index", :controller=>"admin/credit_cards"}: actionpack (4.1.4) lib/action_dispatch/journey/formatter.rb:39:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:599:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' /project/app/presenters/carnival/base_admin_presenter.rb:125:in `model_path' /project/app/view_objects/carnival/nested_form_options.rb:93:in `scopeJSFunction' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:13:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml__479601325_98372130' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273_99895630' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/99277910/variables" for 10.0.2.2 at 2014-08-07 17:52:00 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:52:06 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (53.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (496.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (594.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (630.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (668.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1195ms (Views: 1027.5ms | ActiveRecord: 18.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:09 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:09 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:10 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:52:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:13 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:13 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:14 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:52:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:52:14 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:52:15 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:52:15 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:52:15 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:52:15 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:52:15 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:52:16 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:52:16 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:57:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.7ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (111.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (157.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (243.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (277.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (311.2ms) Completed 500 Internal Server Error in 408ms NameError - undefined local variable or method `model_object' for #<#:0xb58cce30>: /project/app/views/carnival/shared/form/_nested_form_options.html.haml:21:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml__479601325__628155238' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273__633530488' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/86981040/variables" for 10.0.2.2 at 2014-08-07 17:57:21 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:58:49 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::CreditCard Load (2.2ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (60.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (220.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (316.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (350.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (386.1ms) Completed 500 Internal Server Error in 633ms NoMethodError - undefined method `has_many_to_many_relation?' for #<#:0xbdb7724>: /project/app/views/carnival/shared/form/_nested_form_options.html.haml:21:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml__479601325__621529108' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273__633530488' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-624670908/variables" for 10.0.2.2 at 2014-08-07 17:58:50 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:59:02 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.1ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (98.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (180.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (213.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (247.0ms) Completed 500 Internal Server Error in 340ms NoMethodError - undefined method `has_many_to_many_relation?' for #<#:0xbca4e90>: /project/app/views/carnival/shared/form/_nested_form.html.haml:10:in `__project_app_views_carnival_shared_form__nested_form_html_haml___707883273__633530488' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__685079252_98955170' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__808744889_92367740' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___513955597_99203530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-620171618/variables" for 10.0.2.2 at 2014-08-07 17:59:02 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 17:59:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (384.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (476.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (515.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (550.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (40.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (55.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 991ms (Views: 971.3ms | ActiveRecord: 15.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 17:59:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 17:59:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 17:59:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 17:59:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 17:59:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 17:59:28 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 17:59:28 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 17:59:28 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 17:59:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 17:59:29 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 18:00:36 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.9ms) Admin::CreditCard Load (2.2ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 7]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Admin::Installment Load (7.2ms) SELECT "installments".* FROM "installments"  (0.1ms) begin transaction SQL (2.9ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 7]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (2.6ms) DELETE FROM "installments" WHERE "installments"."id" = ? [["id", 8]]  (2.0ms) commit transaction Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (142817.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (69.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (65.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (67.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (146038.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (146147.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (146183.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (146220.4ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (48.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (93.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 146893ms (Views: 146702.4ms | ActiveRecord: 33.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:07 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:07 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:12 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:03:12 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:03:13 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:03:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:03:13 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:03:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:03:14 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:03:14 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:03:14 +0000 Started GET "/admin/installments/7/edit" for 10.0.2.2 at 2014-08-07 18:03:17 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"7"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.8ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 7]] Completed 404 Not Found in 218ms ActiveRecord::RecordNotFound - Couldn't find Admin::Installment with 'id'=7: activerecord (4.1.4) lib/active_record/relation/finder_methods.rb:320:in `raise_record_not_found_exception!' activerecord (4.1.4) lib/active_record/relation/finder_methods.rb:420:in `find_one' activerecord (4.1.4) lib/active_record/relation/finder_methods.rb:404:in `find_with_ids' activerecord (4.1.4) lib/active_record/relation/finder_methods.rb:68:in `find' activerecord (4.1.4) lib/active_record/querying.rb:3:in `find' inherited_resources (1.5.0) lib/inherited_resources/base_helpers.rb:51:in `resource' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/98423480/variables" for 10.0.2.2 at 2014-08-07 18:03:18 +0000 Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 18:03:23 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (84.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (255.2ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (61.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 780ms (Views: 744.2ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:24 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:25 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:27 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:29 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:30 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:03:30 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:03:31 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:03:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:03:31 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:03:31 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 18:03:32 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407434607070" for 10.0.2.2 at 2014-08-07 18:03:32 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407434607070"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (2.7ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 213ms (Views: 191.9ms | ActiveRecord: 9.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 18:03:32 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 18:03:33 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 18:03:33 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 18:03:37 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.5ms) Admin::CreditCard Load (2.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (51.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (78.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (341.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (459.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (510.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (550.6ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (109.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 1101ms (Views: 1078.4ms | ActiveRecord: 8.9ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:38 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:39 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:39 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:40 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:44 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:03:45 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:03:45 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:03:45 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:03:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:03:46 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:03:46 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:03:46 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:03:46 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 18:03:53 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.6ms) Admin::CreditCard Load (2.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (51.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (83.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (453.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (573.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (624.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (676.6ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (55.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (30.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1461ms (Views: 1148.7ms | ActiveRecord: 21.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:56 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:57 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:57 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:58 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:03:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:03:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:01 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:02 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:04:03 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:04:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:04:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:04:04 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:04:04 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:04:04 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:04:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:04:04 +0000 Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 18:04:19 +0000 ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (110.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.7ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (293.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (79.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.6ms) Completed 200 OK in 1551ms (Views: 1231.4ms | ActiveRecord: 9.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:27 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:27 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:04:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:04:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:04:28 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:04:28 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 18:04:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:04:29 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407434664332" for 10.0.2.2 at 2014-08-07 18:04:29 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407434664332"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 103ms (Views: 94.3ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 18:04:29 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 18:04:30 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 18:04:30 +0000 Started GET "/admin/installments/new" for 10.0.2.2 at 2014-08-07 18:04:31 +0000 Processing by Admin::InstallmentsController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.1ms) Admin::CreditCard Load (1.9ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (13.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (53.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (301.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (432.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (777.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (814.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1152ms (Views: 1142.3ms | ActiveRecord: 6.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:32 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:35 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:36 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:37 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:04:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:04:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:04:38 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:04:39 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:04:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:04:39 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:04:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:04:40 +0000 Started POST "/admin/installments" for 10.0.2.2 at 2014-08-07 18:04:55 +0000 Processing by Admin::InstallmentsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"i1", "credit_cards_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"card3"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: _destroy Unpermitted parameters: utf8, authenticity_token, carnival-options-select-credit_card, commit  (0.1ms) begin transaction SQL (3.2ms) INSERT INTO "installments" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 18:04:56.028094"], ["name", "i1"], ["updated_at", "2014-08-07 18:04:56.028094"]] SQL (0.5ms) INSERT INTO "credit_cards" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-07 18:04:56.033226"], ["name", "card3"], ["updated_at", "2014-08-07 18:04:56.033226"]] SQL (1.4ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 18:04:56.053047"], ["credit_card_id", 20], ["installment_id", 9], ["updated_at", "2014-08-07 18:04:56.053047"]]  (2.5ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 85ms (ActiveRecord: 9.4ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 18:04:56 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (74.3ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (207.8ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 551ms (Views: 544.4ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:56 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:57 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:57 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:58 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:58 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:04:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:04:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:02 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:02 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:02 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:05:03 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:05:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:05:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:05:03 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 18:05:04 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:05:04 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407434699680" for 10.0.2.2 at 2014-08-07 18:05:04 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407434699680"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.9ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 64ms (Views: 53.9ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 18:05:04 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 18:05:05 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 18:05:05 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:05:08 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.9ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (56.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (263.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (348.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (382.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (421.9ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 774ms (Views: 761.8ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:10 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:11 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:12 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:12 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:13 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:13 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:13 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:14 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:14 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:14 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:05:15 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:05:15 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:05:15 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:05:15 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:05:16 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:05:16 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:05:16 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:05:16 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:05:27 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (427.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (519.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (554.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (590.3ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (48.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1151ms (Views: 987.1ms | ActiveRecord: 19.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:05:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:34 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:05:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:05:35 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:05:35 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:05:36 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:05:36 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:05:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:05:36 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:05:36 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:05:37 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:07:04 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.1ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (219.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (317.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (350.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (384.6ms) Completed 500 Internal Server Error in 669ms NoMethodError - undefined method `build_credit_cards' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' /project/app/views/carnival/shared/form/_nested_form.html.haml:24:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_97047820' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97276910/variables" for 10.0.2.2 at 2014-08-07 18:07:05 +0000 Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:07:09 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.7ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (14.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (90.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (189.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (221.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (255.1ms) Completed 500 Internal Server Error in 347ms NoMethodError - undefined method `build_credit_cards' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' /project/app/views/carnival/shared/form/_nested_form.html.haml:24:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_97047820' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:10 +0000 Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:14 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:15 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:16 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:17 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:17 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:19 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:20 +0000 Started POST "/__better_errors/97664470/variables" for 10.0.2.2 at 2014-08-07 18:07:32 +0000 Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 18:07:48 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (67.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (195.5ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 645ms (Views: 622.1ms | ActiveRecord: 5.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:50 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:51 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:51 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:51 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:07:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:53 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:53 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:53 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:54 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:54 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:54 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:55 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:55 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:55 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 18:07:55 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:07:56 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:07:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:07:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:07:56 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 18:07:57 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:07:57 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407434872572" for 10.0.2.2 at 2014-08-07 18:07:57 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407434872572"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 60ms (Views: 52.4ms | ActiveRecord: 4.9ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 18:07:57 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 18:07:58 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 18:07:58 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:07:59 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (90.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (174.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (207.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (245.0ms) Completed 500 Internal Server Error in 338ms NoMethodError - undefined method `build_credit_cards' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' /project/app/views/carnival/shared/form/_nested_form.html.haml:24:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_97047820' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/101930490/variables" for 10.0.2.2 at 2014-08-07 18:08:00 +0000 Admin::CreditCard Load (2.1ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Started POST "/__better_errors/101930490/variables" for 10.0.2.2 at 2014-08-07 18:08:03 +0000 Started POST "/__better_errors/101930490/variables" for 10.0.2.2 at 2014-08-07 18:08:04 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:08:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (58.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (143.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (180.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (213.0ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (49.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 597ms (Views: 583.9ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:08:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:08:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:08:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:08:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:08:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:08:27 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:08:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:08:28 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:08:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:08:28 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:10:21 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (114.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (196.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (230.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (264.2ms) Completed 500 Internal Server Error in 356ms NameError - undefined local variable or method `inner_form' for #<#:0xb5fac20>: /project/app/views/carnival/shared/form/_nested_form.html.haml:10:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_95779150' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/101647150/variables" for 10.0.2.2 at 2014-08-07 18:10:22 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:11:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (4.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.7ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::CreditCard Load (2.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (62.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (154.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (189.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (223.7ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 599ms (Views: 580.2ms | ActiveRecord: 14.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:11:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:11:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:11:26 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:11:27 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:11:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:11:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:11:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:11:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:11:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:11:28 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:13:51 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (142.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (175.5ms) Completed 500 Internal Server Error in 269ms SyntaxError - /project/app/views/carnival/shared/form/_nested_form.html.haml:43: syntax error, unexpected keyword_ensure, expecting end-of-input: /project/app/views/carnival/shared/form/_nested_form.html.haml:43:in `' actionview (4.1.4) lib/action_view/template.rb:297:in `compile' actionview (4.1.4) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:244:in `block in compile!' actionview (4.1.4) lib/action_view/template.rb:232:in `compile!' actionview (4.1.4) lib/action_view/template.rb:144:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/101947670/variables" for 10.0.2.2 at 2014-08-07 18:13:51 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:14:11 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (125.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (158.8ms) Completed 500 Internal Server Error in 251ms SyntaxError - /project/app/views/carnival/shared/form/_nested_form.html.haml:35: syntax error, unexpected keyword_ensure, expecting end-of-input: /project/app/views/carnival/shared/form/_nested_form.html.haml:35:in `' actionview (4.1.4) lib/action_view/template.rb:297:in `compile' actionview (4.1.4) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:244:in `block in compile!' actionview (4.1.4) lib/action_view/template.rb:232:in `compile!' actionview (4.1.4) lib/action_view/template.rb:144:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/96084170/variables" for 10.0.2.2 at 2014-08-07 18:14:12 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:14:27 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.7ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.2ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (108.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (200.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (233.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (266.9ms) Completed 500 Internal Server Error in 374ms NameError - undefined local variable or method `inner_form' for #<#:0xa97273c>: /project/app/views/carnival/shared/form/_nested_form.html.haml:10:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_95251330' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_94286470' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:69:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:66:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97582750/variables" for 10.0.2.2 at 2014-08-07 18:14:28 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:14:45 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.1ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::CreditCard Load (1.9ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (56.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (227.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (313.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (349.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (382.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 723ms (Views: 710.0ms | ActiveRecord: 8.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:47 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:14:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:48 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:51 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:14:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:14:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:14:52 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:14:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:14:52 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:14:52 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:14:53 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:14:53 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:14:53 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:41:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (20.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (346.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (443.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (490.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (536.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1064ms (Views: 903.5ms | ActiveRecord: 16.5ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:22 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:23 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:23 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:24 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 18:41:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:27 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 18:41:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 18:41:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 18:41:28 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 18:41:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 18:41:28 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 18:41:28 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 18:41:29 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 18:41:29 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 18:41:29 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:41:49 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (41.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (196.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (291.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (326.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (362.8ms) Completed 500 Internal Server Error in 659ms ActionController::UrlGenerationError - No route matches {:action=>"render_inner_form", :controller=>"admin/#", :id=>"9"}: actionpack (4.1.4) lib/action_dispatch/journey/formatter.rb:39:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:599:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' actionview (4.1.4) lib/action_view/routing_url_for.rb:83:in `url_for' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:44:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549__618972358' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:71:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/101720410/variables" for 10.0.2.2 at 2014-08-07 18:41:50 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:43:45 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (4.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Admin::CreditCard Load (2.2ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (63.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (108.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (190.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (224.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (257.1ms) Completed 500 Internal Server Error in 353ms NoMethodError - undefined method `get_related_class' for #<#:0xb427588>: /project/app/views/carnival/shared/form/_nested_form_options.html.haml:43:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549_95489700' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:71:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/96823520/variables" for 10.0.2.2 at 2014-08-07 18:43:46 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:45:58 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (25.8ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (47.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (205.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (310.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (344.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (381.4ms) Completed 500 Internal Server Error in 621ms NoMethodError - undefined method `start_with?' for nil:NilClass: actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:576:in `use_relative_controller!' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:516:in `initialize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' actionview (4.1.4) lib/action_view/routing_url_for.rb:83:in `url_for' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:44:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549__626389478' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:71:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-634111238/variables" for 10.0.2.2 at 2014-08-07 18:46:00 +0000 Started POST "/__better_errors/-634111238/eval" for 10.0.2.2 at 2014-08-07 18:46:06 +0000 Started POST "/__better_errors/-634111238/variables" for 10.0.2.2 at 2014-08-07 18:46:08 +0000 Started POST "/__better_errors/-634111238/variables" for 10.0.2.2 at 2014-08-07 18:46:09 +0000 Started POST "/__better_errors/-634111238/variables" for 10.0.2.2 at 2014-08-07 18:46:10 +0000 Started POST "/__better_errors/-634111238/variables" for 10.0.2.2 at 2014-08-07 18:46:11 +0000 Started POST "/__better_errors/-634111238/variables" for 10.0.2.2 at 2014-08-07 18:46:22 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:46:35 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (44.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (201.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (296.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (330.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (366.2ms) Completed 500 Internal Server Error in 601ms ActionController::UrlGenerationError - No route matches {:action=>"render_inner_form", :controller=>"admin/teste", :id=>"9"}: actionpack (4.1.4) lib/action_dispatch/journey/formatter.rb:39:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:599:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' actionview (4.1.4) lib/action_view/routing_url_for.rb:83:in `url_for' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:44:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549__626389478' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:71:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-630517108/variables" for 10.0.2.2 at 2014-08-07 18:46:36 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:46:53 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.6ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (42.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (205.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (306.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (341.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (376.9ms) Completed 500 Internal Server Error in 623ms NoMethodError - undefined method `start_with?' for nil:NilClass: actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:576:in `use_relative_controller!' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:516:in `initialize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' actionview (4.1.4) lib/action_view/routing_url_for.rb:83:in `url_for' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:44:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549__626389478' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:71:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-643872248/variables" for 10.0.2.2 at 2014-08-07 18:46:54 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:47:03 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (43.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (199.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (312.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (346.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (382.4ms) Completed 500 Internal Server Error in 640ms ActionController::UrlGenerationError - No route matches {:action=>"render_inner_form", :controller=>"admin/credit_cards", :id=>"9"}: actionpack (4.1.4) lib/action_dispatch/journey/formatter.rb:39:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:599:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' actionview (4.1.4) lib/action_view/routing_url_for.rb:83:in `url_for' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:44:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549__626389478' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:74:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:71:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/102030810/variables" for 10.0.2.2 at 2014-08-07 18:47:04 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:58:23 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 58ms SyntaxError - /project/app/presenters/carnival/base_admin_presenter.rb:405: syntax error, unexpected keyword_end, expecting end-of-input: /project/app/presenters/carnival/base_admin_presenter.rb:405:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' app/presenters/admin/installment_presenter.rb:2:in `' app/presenters/admin/installment_presenter.rb:1:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:129:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:123:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:73:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-629293678/variables" for 10.0.2.2 at 2014-08-07 18:58:24 +0000 Started POST "/__better_errors/-629293678/variables" for 10.0.2.2 at 2014-08-07 18:58:26 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 18:58:52 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (47.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (202.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (298.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (331.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (366.7ms) Completed 500 Internal Server Error in 608ms ActionController::UrlGenerationError - No route matches {:action=>"render_inner_form", :controller=>"carnival/base_admin", :id=>"9"}: actionpack (4.1.4) lib/action_dispatch/journey/formatter.rb:39:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:599:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:629:in `generate' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:665:in `url_for' actionpack (4.1.4) lib/action_dispatch/routing/url_for.rb:155:in `url_for' actionview (4.1.4) lib/action_view/routing_url_for.rb:83:in `url_for' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:44:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml___201639549__637761038' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__583162027_96252530' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__370305200_96370930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___272856108_96662390' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__933689052_89595790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:77:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:74:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-638815268/variables" for 10.0.2.2 at 2014-08-07 18:58:53 +0000 Started GET "/admin/render_inner_form" for 10.0.2.2 at 2014-08-07 18:59:11 +0000 ActionController::RoutingError (No route matches [GET] "/admin/render_inner_form"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.6ms) Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:00:45 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.4ms) Admin::CreditCard Load (2.1ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (525.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (648.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (995.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1119.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (42.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.1ms) Completed 200 OK in 2249ms (Views: 2025.9ms | ActiveRecord: 15.8ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:49 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:49 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:00:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:51 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:54 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:00:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:00:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:00:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:00:55 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:00:55 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:00:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:00:55 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:00:56 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:00:56 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:01:28 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (57.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (56.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (298.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (382.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (420.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (454.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 825ms (Views: 811.2ms | ActiveRecord: 8.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:01:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:34 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:01:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:01:35 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:01:35 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:01:35 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:01:36 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:01:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:01:36 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:01:36 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:01:36 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:02:13 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (53.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (251.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (336.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (409.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (442.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 780ms (Views: 767.3ms | ActiveRecord: 8.2ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:14 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:14 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:15 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:15 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:16 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:16 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:17 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:17 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:17 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:18 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:18 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:18 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:19 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:19 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:19 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:02:19 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:02:20 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:02:20 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:02:20 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:02:20 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:02:21 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:02:21 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:02:21 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:02:39 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (60.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (258.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (346.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (380.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (413.8ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 789ms (Views: 776.5ms | ActiveRecord: 8.5ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:40 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:40 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:41 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:41 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:41 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:41 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:42 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:42 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:02:42 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:43 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:43 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:43 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:44 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:44 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:45 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:02:45 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:02:46 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:02:46 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:02:46 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:02:46 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:02:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:02:47 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:02:47 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:02:47 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:05:30 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (47.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (242.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (323.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (358.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (391.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (45.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 771ms (Views: 759.7ms | ActiveRecord: 7.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:32 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:33 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:05:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:35 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:05:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:05:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:05:37 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:05:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:05:38 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:05:38 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:05:38 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:05:38 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:05:39 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:06:27 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.7ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (24.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (58.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (264.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (351.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (389.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (424.5ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 828ms (Views: 814.3ms | ActiveRecord: 9.1ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:28 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:29 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:06:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:33 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:06:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:06:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:06:34 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:06:34 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:06:34 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:06:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:06:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:06:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:06:35 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:08:16 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (392.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (489.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (523.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (559.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (47.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1184ms (Views: 970.3ms | ActiveRecord: 17.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:18 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:08:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:08:24 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:08:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:08:24 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:08:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:08:25 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:08:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:08:25 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:08:50 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.6ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (379.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (474.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (514.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (550.6ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (37.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1163ms (Views: 957.2ms | ActiveRecord: 17.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:08:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:57 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:08:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:08:58 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:08:58 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:08:58 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:08:58 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:08:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:08:59 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:08:59 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:08:59 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:09:33 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (57.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (254.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (344.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (380.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (412.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (44.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 795ms (Views: 782.2ms | ActiveRecord: 8.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:09:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:40 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:09:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:09:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:09:40 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:09:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:09:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:09:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:09:41 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:09:42 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:09:42 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:13:33 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.1ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.0ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (251.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (333.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (417.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (451.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 786ms (Views: 773.8ms | ActiveRecord: 7.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:34 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:13:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:13:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:13:40 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:13:40 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:13:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:13:40 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:13:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:13:41 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:13:41 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:13:41 +0000 Started GET "/admin/render_inner_form?id=3&field=credit_cards" for 10.0.2.2 at 2014-08-07 19:13:52 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"3", "field"=>"credit_cards"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 33ms NameError - uninitialized constant Carnival::BaseAdmin: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/presenters/carnival/base_admin_presenter.rb:251:in `model_class' /project/app/presenters/carnival/base_admin_presenter.rb:10:in `initialize' /project/app/controllers/carnival/base_admin_controller.rb:123:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:13:52 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:13:59 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:14:00 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:14:00 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:14:01 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:14:02 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:14:04 +0000 Started POST "/__better_errors/103972900/variables" for 10.0.2.2 at 2014-08-07 19:14:06 +0000 Started GET "/admin/render_inner_form?id=3&field=credit_cards" for 10.0.2.2 at 2014-08-07 19:15:17 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"3", "field"=>"credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 146ms NoMethodError - undefined method `find_by_id' for nil:NilClass: /project/app/controllers/carnival/base_admin_controller.rb:19:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/104563110/variables" for 10.0.2.2 at 2014-08-07 19:15:18 +0000 Started POST "/__better_errors/104563110/eval" for 10.0.2.2 at 2014-08-07 19:15:28 +0000 Started POST "/__better_errors/104563110/eval" for 10.0.2.2 at 2014-08-07 19:15:31 +0000 Started POST "/__better_errors/104563110/eval" for 10.0.2.2 at 2014-08-07 19:15:34 +0000 Started POST "/__better_errors/104563110/eval" for 10.0.2.2 at 2014-08-07 19:15:38 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:16:59 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (381.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (476.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (512.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (547.6ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1150ms (Views: 940.4ms | ActiveRecord: 18.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:01 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:02 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:02 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:03 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:17:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:04 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:04 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:04 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:05 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:05 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:05 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:06 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:06 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:06 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:17:07 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:17:07 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:17:07 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:17:08 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:17:08 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:17:08 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:17:08 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:17:09 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:17:09 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:17:43 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Admin::CreditCard Load (2.0ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (51.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (208.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (301.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (335.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (372.3ms) Completed 500 Internal Server Error in 663ms RuntimeError - : /project/app/services/carnival/klass_service.rb:34:in `related_class' /project/app/presenters/carnival/base_admin_presenter.rb:304:in `get_class_for' /project/app/view_objects/carnival/nested_form_options.rb:50:in `field_class_name' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:48:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml__666070807_104764650' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__191050112_104763870' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___248920454_92368100' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___248920454_92368100' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__703407147_104421460' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:77:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:74:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/105850940/variables" for 10.0.2.2 at 2014-08-07 19:17:44 +0000 Started POST "/__better_errors/105850940/eval" for 10.0.2.2 at 2014-08-07 19:17:48 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:18:02 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (42.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (197.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (295.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (328.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (363.7ms) Completed 500 Internal Server Error in 648ms NoMethodError - undefined method `classify' for #: activerecord (4.1.4) lib/active_record/dynamic_matchers.rb:26:in `method_missing' /project/app/services/carnival/klass_service.rb:35:in `related_class' /project/app/presenters/carnival/base_admin_presenter.rb:304:in `get_class_for' /project/app/view_objects/carnival/nested_form_options.rb:50:in `field_class_name' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:48:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml__666070807_104764650' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__191050112_104763870' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___248920454_92368100' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___248920454_92368100' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__703407147_104421460' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:77:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:74:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/105471690/variables" for 10.0.2.2 at 2014-08-07 19:18:03 +0000 Admin::CreditCard Load (1.9ms) SELECT "credit_cards".* FROM "credit_cards" Started POST "/__better_errors/105471690/variables" for 10.0.2.2 at 2014-08-07 19:18:09 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:18:34 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Admin::CreditCard Load (1.9ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (45.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (202.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (298.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (330.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (365.7ms) Completed 500 Internal Server Error in 612ms NoMethodError - undefined method `related_class_file_name' for #: /project/app/view_objects/carnival/nested_form_options.rb:50:in `field_class_file_name' /project/app/views/carnival/shared/form/_nested_form_options.html.haml:48:in `__project_app_views_carnival_shared_form__nested_form_options_html_haml__666070807_106292580' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:8:in `__project_app_views_carnival_shared_form__nested_form_html_haml__191050112_104763870' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___248920454_92368100' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___248920454_92368100' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml__703407147_104421460' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:77:in `block (2 levels) in edit' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:74:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-622155428/variables" for 10.0.2.2 at 2014-08-07 19:18:36 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 19:19:10 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (441.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (538.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (573.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (609.4ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1140ms (Views: 966.3ms | ActiveRecord: 18.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:13 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 19:19:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:17 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 19:19:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 19:19:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 19:19:18 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 19:19:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 19:19:18 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 19:19:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 19:19:19 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 19:19:19 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 19:19:19 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:19:31 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 16ms NoMethodError - undefined method `find_by_id' for "Admin::CreditCard":String: /project/app/controllers/carnival/base_admin_controller.rb:19:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/104342150/variables" for 10.0.2.2 at 2014-08-07 19:19:31 +0000 Started POST "/__better_errors/104342150/eval" for 10.0.2.2 at 2014-08-07 19:19:37 +0000 Started POST "/__better_errors/104342150/eval" for 10.0.2.2 at 2014-08-07 19:19:39 +0000 Started POST "/__better_errors/104342150/eval" for 10.0.2.2 at 2014-08-07 19:19:42 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:20:01 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Completed 500 Internal Server Error in 294ms ActionView::MissingTemplate - Missing template carnival/base_admin/render_inner_form, inherited_resources/base/render_inner_form, application/render_inner_form with {:locale=>[:"pt-BR"], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in: * "/project/test/dummy/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/devise-3.2.4/app/views" : actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92701760/variables" for 10.0.2.2 at 2014-08-07 19:20:02 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:29:39 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (44.8ms) Completed 500 Internal Server Error in 323ms NameError - undefined local variable or method `action' for #<#:0xc756820>: /project/app/views/carnival/base_admin/render_inner_form.html.haml:6:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_104507190' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/104942170/variables" for 10.0.2.2 at 2014-08-07 19:29:40 +0000 Started POST "/__better_errors/104942170/variables" for 10.0.2.2 at 2014-08-07 19:30:26 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:30:27 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.9ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (96.2ms) Completed 500 Internal Server Error in 212ms NameError - undefined local variable or method `f' for #<#:0xc6245ec>: /project/app/views/carnival/base_admin/render_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103906790' /project/app/views/carnival/base_admin/render_inner_form.html.haml:8:in `block in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103906790' /project/app/views/carnival/base_admin/render_inner_form.html.haml:6:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103906790' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92272150/variables" for 10.0.2.2 at 2014-08-07 19:30:28 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:32:17 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (3.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (5.0ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (88.2ms) Completed 500 Internal Server Error in 216ms NameError - undefined local variable or method `button' for #<#:0xc5e9ed8>: /project/app/views/carnival/base_admin/render_inner_form.html.haml:3:in `block in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103769930' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/base_admin/render_inner_form.html.haml:2:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103769930' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92269460/variables" for 10.0.2.2 at 2014-08-07 19:32:18 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:32:26 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (45.1ms) Completed 500 Internal Server Error in 160ms NameError - undefined local variable or method `model_object' for #<#:0xb9dda18>: /project/app/views/carnival/base_admin/render_inner_form.html.haml:4:in `block in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_97516410' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/base_admin/render_inner_form.html.haml:3:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_97516410' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/104014900/variables" for 10.0.2.2 at 2014-08-07 19:32:26 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:32:37 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (84.9ms) Completed 500 Internal Server Error in 195ms NameError - undefined local variable or method `model_presenter' for #<#:0xc6d17b0>: /project/app/views/carnival/base_admin/render_inner_form.html.haml:4:in `block in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_104264380' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/base_admin/render_inner_form.html.haml:3:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_104264380' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97720010/variables" for 10.0.2.2 at 2014-08-07 19:32:38 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:32:46 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (87.3ms) Completed 500 Internal Server Error in 211ms NameError - undefined local variable or method `action' for #<#:0xc47c578>: /project/app/views/carnival/base_admin/render_inner_form.html.haml:4:in `block in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103077250' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/base_admin/render_inner_form.html.haml:3:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_103077250' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92179930/variables" for 10.0.2.2 at 2014-08-07 19:32:47 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:32:57 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (49.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (131.4ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (166.9ms) Completed 500 Internal Server Error in 285ms NoMethodError - undefined method `email' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' actionview (4.1.4) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.1.4) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast' actionview (4.1.4) lib/action_view/helpers/tags/text_field.rb:9:in `block in render' actionview (4.1.4) lib/action_view/helpers/tags/text_field.rb:9:in `render' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:771:in `text_field' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:1258:in `text_field' simple_form (3.0.2) lib/simple_form/inputs/string_input.rb:12:in `input' simple_form (3.0.2) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.2) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.2) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.2) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:22:in `__project_app_views_carnival_shared_form__field_html_haml___392913306_104558380' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__1058562451_104298710' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/render_inner_form.html.haml:5:in `block in __project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_97562880' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/base_admin/render_inner_form.html.haml:4:in `__project_app_views_carnival_base_admin_render_inner_form_html_haml__1001286796_97562880' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/104021870/variables" for 10.0.2.2 at 2014-08-07 19:32:58 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:35:32 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 153ms ArgumentError - wrong number of arguments (1 for 2): /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/106125350/variables" for 10.0.2.2 at 2014-08-07 19:35:33 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 19:35:51 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 228ms NameError - uninitialized constant Carnival::Admin: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:253:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/presenters/carnival/base_admin_presenter.rb:316:in `presenter_to_field_sym' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/103559000/variables" for 10.0.2.2 at 2014-08-07 19:35:52 +0000 Started POST "/__better_errors/103559000/variables" for 10.0.2.2 at 2014-08-07 19:35:59 +0000 Started POST "/__better_errors/103559000/variables" for 10.0.2.2 at 2014-08-07 19:36:00 +0000 Started POST "/__better_errors/103559000/variables" for 10.0.2.2 at 2014-08-07 19:36:00 +0000 Started POST "/__better_errors/103559000/variables" for 10.0.2.2 at 2014-08-07 19:36:01 +0000 Started POST "/__better_errors/103559000/variables" for 10.0.2.2 at 2014-08-07 19:36:03 +0000 Started POST "/__better_errors/103559000/eval" for 10.0.2.2 at 2014-08-07 19:36:10 +0000 Started POST "/__better_errors/103559000/eval" for 10.0.2.2 at 2014-08-07 19:36:13 +0000 Started POST "/__better_errors/103559000/eval" for 10.0.2.2 at 2014-08-07 19:57:33 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:00:04 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 193ms NoMethodError - undefined method `mount_at' for Carnival::Config:Class: /project/app/controllers/carnival/base_admin_controller.rb:24:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97798310/variables" for 10.0.2.2 at 2014-08-07 20:00:05 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:01:39 +0000 ActiveRecord::SchemaMigration Load (2.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 249ms NameError - uninitialized constant Admin::CreditCardsPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:25:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97996990/variables" for 10.0.2.2 at 2014-08-07 20:01:40 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:02:06 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 183ms NameError - uninitialized constant Admin::CreditCardsPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:25:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/104307830/variables" for 10.0.2.2 at 2014-08-07 20:02:07 +0000 Started POST "/__better_errors/104307830/eval" for 10.0.2.2 at 2014-08-07 20:02:14 +0000 Started POST "/__better_errors/104307830/eval" for 10.0.2.2 at 2014-08-07 20:02:19 +0000 Started POST "/__better_errors/104307830/eval" for 10.0.2.2 at 2014-08-07 20:02:22 +0000 Started POST "/__better_errors/104307830/eval" for 10.0.2.2 at 2014-08-07 20:02:31 +0000 Started POST "/__better_errors/104307830/eval" for 10.0.2.2 at 2014-08-07 20:02:35 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:02:45 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 231ms NameError - uninitialized constant Admin::CreditCardsPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:25:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/86474780/variables" for 10.0.2.2 at 2014-08-07 20:02:46 +0000 Started POST "/__better_errors/86474780/variables" for 10.0.2.2 at 2014-08-07 20:02:48 +0000 Started POST "/__better_errors/86474780/variables" for 10.0.2.2 at 2014-08-07 20:02:49 +0000 Started POST "/__better_errors/86474780/variables" for 10.0.2.2 at 2014-08-07 20:02:51 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:03:18 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (117.3ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.html.haml within layouts/application (517.3ms) Completed 200 OK in 951ms (Views: 765.6ms | ActiveRecord: 9.6ms) Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-08-07 20:03:20 +0000 Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-08-07 20:03:20 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:08:01 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Completed 500 Internal Server Error in 86ms ActionView::MissingTemplate - Missing template carnival/base_admin/render_inner_form, inherited_resources/base/render_inner_form, application/render_inner_form with {:locale=>[:"pt-BR"], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in: * "/project/test/dummy/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/devise-3.2.4/app/views" : actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97897270/variables" for 10.0.2.2 at 2014-08-07 20:08:01 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards.json" for 10.0.2.2 at 2014-08-07 20:08:06 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards.json"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 20ms NameError - uninitialized constant JsonPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:25:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/99561250/variables" for 10.0.2.2 at 2014-08-07 20:08:06 +0000 Started POST "/__better_errors/99561250/variables" for 10.0.2.2 at 2014-08-07 20:08:15 +0000 Started POST "/__better_errors/99561250/variables" for 10.0.2.2 at 2014-08-07 20:08:15 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards.js" for 10.0.2.2 at 2014-08-07 20:08:41 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards.js"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 20ms NameError - uninitialized constant JPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:25:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97896510/variables" for 10.0.2.2 at 2014-08-07 20:08:41 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards.json" for 10.0.2.2 at 2014-08-07 20:10:36 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards.json"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 20ms NameError - uninitialized constant JsonPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:25:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/99236090/variables" for 10.0.2.2 at 2014-08-07 20:10:36 +0000 Started GET "/admin/render_inner_form?id=2&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:10:37 +0000 Processing by Carnival::BaseAdminController#render_inner_form as HTML Parameters: {"id"=>"2", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 2 LIMIT 1 Completed 500 Internal Server Error in 79ms ActionView::MissingTemplate - Missing template carnival/base_admin/render_inner_form, inherited_resources/base/render_inner_form, application/render_inner_form with {:locale=>[:"pt-BR"], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in: * "/project/test/dummy/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/devise-3.2.4/app/views" : actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/96510170/variables" for 10.0.2.2 at 2014-08-07 20:10:37 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:10:38 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.9ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.0ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (53.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (500.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (598.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (639.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (675.4ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (41.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.0ms) Completed 200 OK in 1602ms (Views: 1565.4ms | ActiveRecord: 13.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:40 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:40 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:40 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:41 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:41 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:42 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:42 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:10:42 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:43 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:43 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:43 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:43 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:44 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:45 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:45 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:10:45 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:10:46 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 20:10:46 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 20:10:46 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 20:10:47 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 20:10:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 20:10:47 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:10:47 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 20:10:48 +0000 Started GET "/admin/render_inner_form" for 10.0.2.2 at 2014-08-07 20:10:50 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError - undefined method `split' for nil:NilClass: /project/app/controllers/carnival/base_admin_controller.rb:23:in `presenter_name' /project/app/controllers/carnival/base_admin_controller.rb:17:in `render_inner_form' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:11:50 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Admin::CreditCard Load (1.7ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (2.0ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (54.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (294.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (381.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (416.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (449.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 789ms (Views: 776.3ms | ActiveRecord: 8.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:51 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:11:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:11:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:11:57 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 20:11:57 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 20:11:57 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 20:11:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 20:11:58 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 20:11:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:11:58 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 20:11:58 +0000 Started GET "/admin/render_inner_form?id=3&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:11:59 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"3", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 3 LIMIT 1 Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (1088.1ms) Completed 500 Internal Server Error in 1508ms ActionView::MissingTemplate - Missing partial carnival/base_admin/__inner_form, inherited_resources/base/__inner_form, application/__inner_form with {:locale=>[:"pt-BR"], :formats=>[:js, :html, :text, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in: * "/project/test/dummy/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/devise-3.2.4/app/views" : actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:383:in `find_template' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:263:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml' /project/app/views/carnival/base_admin/render_inner_form.js.erb:1:in `__project_app_views_carnival_base_admin_render_inner_form_js_erb___589906869_100148600' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/render_inner_form?id=6&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:12:31 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"6", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 6 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (364.9ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (772.7ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (1088.4ms) Completed 200 OK in 1516ms (Views: 1506.6ms | ActiveRecord: 3.0ms) Started GET "/admin/render_inner_form?id=9&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:13:00 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"9", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (3.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 9 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (342.5ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (679.8ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (972.8ms) Completed 200 OK in 1390ms (Views: 1376.1ms | ActiveRecord: 5.3ms) Started GET "/admin/render_inner_form?id=6&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:14:15 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"6", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 6 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (366.1ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (684.1ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (975.3ms) Completed 200 OK in 1384ms (Views: 1374.0ms | ActiveRecord: 3.0ms) Started GET "/admin/render_inner_form?id=8&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:14:31 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"8", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 8 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (332.0ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (660.3ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (952.2ms) Completed 200 OK in 1359ms (Views: 1350.8ms | ActiveRecord: 2.6ms) Started GET "/admin/render_inner_form?id=18&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:14:38 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"18", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 18 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (343.7ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (665.1ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (955.1ms) Completed 200 OK in 1393ms (Views: 1384.9ms | ActiveRecord: 2.9ms) Started GET "/admin/render_inner_form?id=17&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:14:57 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"17", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 17 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (343.7ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (663.9ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (957.2ms) Completed 200 OK in 1382ms (Views: 1373.1ms | ActiveRecord: 2.8ms) Started GET "/admin/render_inner_form?id=11&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:15:04 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"11", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 11 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (332.7ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (651.1ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (942.5ms) Completed 200 OK in 1359ms (Views: 1350.8ms | ActiveRecord: 2.6ms) Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:16:58 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (57.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (302.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (385.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (421.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (456.8ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 796ms (Views: 784.8ms | ActiveRecord: 7.6ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:16:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:00 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:00 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:04 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:17:05 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 20:17:05 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 20:17:06 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 20:17:06 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 20:17:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 20:17:06 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:17:06 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 20:17:07 +0000 Started GET "/admin/render_inner_form?id=4&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:17:09 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"4", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 4 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (332.0ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (666.6ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (980.0ms) Completed 200 OK in 1406ms (Views: 1397.8ms | ActiveRecord: 2.7ms) Started PATCH "/admin/installments/9" for 10.0.2.2 at 2014-08-07 20:17:16 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"i1", "credit_cards_attributes"=>{"0"=>{"id"=>"20", "_destroy"=>"false", "name"=>"card3"}}}, "carnival-options-select-credit_card"=>"admin_installment_credit_card_ids_4", "commit"=>"Atualizar", "id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.1ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Unpermitted parameters: _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? AND "credit_cards"."id" IN (20) [["installment_id", 9]]  (0.1ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 16ms (ActiveRecord: 4.4ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 20:17:16 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (87.2ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (260.5ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 684ms (Views: 625.5ms | ActiveRecord: 4.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:23 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:17:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 20:17:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 20:17:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 20:17:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 20:17:25 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 20:17:25 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 20:17:25 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407442640408" for 10.0.2.2 at 2014-08-07 20:17:25 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407442640408"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 81ms (Views: 74.2ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 20:17:25 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 20:17:26 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:17:27 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (53.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (256.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (337.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (371.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (405.5ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (53.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 801ms (Views: 787.3ms | ActiveRecord: 8.7ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:29 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:17:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:33 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:17:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:17:34 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 20:17:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 20:17:35 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 20:17:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 20:17:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 20:17:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:17:36 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 20:17:36 +0000 Started GET "/admin/render_inner_form?id=5&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:22:39 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"5", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 5 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (362.6ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (695.1ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (987.6ms) Completed 200 OK in 1399ms (Views: 1390.2ms | ActiveRecord: 3.1ms) Started GET "/admin/render_inner_form?id=11&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:26:46 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"11", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 11 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (333.5ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (651.8ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (946.1ms) Completed 200 OK in 1371ms (Views: 1361.7ms | ActiveRecord: 2.8ms) Started GET "/admin/render_inner_form?id=5&field=admin/credit_cards" for 10.0.2.2 at 2014-08-07 20:28:16 +0000 Processing by Carnival::BaseAdminController#render_inner_form as */* Parameters: {"id"=>"5", "field"=>"admin/credit_cards"} Carnival::AdminUser Load (4.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" = 5 LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (352.3ms) Rendered /project/app/views/carnival/base_admin/_inner_form.html.haml (678.1ms) Rendered /project/app/views/carnival/base_admin/render_inner_form.js.erb (970.5ms) Completed 200 OK in 1390ms (Views: 1374.8ms | ActiveRecord: 5.8ms) Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:30:34 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.5ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (47.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (259.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (342.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (376.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (410.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 810ms (Views: 796.1ms | ActiveRecord: 8.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:36 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:36 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:30:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:38 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:38 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:39 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:39 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:40 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:40 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:40 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:30:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:30:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 20:30:53 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 20:30:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 20:30:54 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 20:30:54 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 20:30:54 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 20:30:55 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:30:55 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:31:20 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (19.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (256.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (352.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (387.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (423.8ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (50.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 813ms (Views: 800.4ms | ActiveRecord: 8.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:31:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:31:27 +0000 Started PATCH "/admin/installments/9" for 10.0.2.2 at 2014-08-07 20:31:33 +0000 Processing by Admin::InstallmentsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJFV2hFhNJ1d1l8wc27fkIxh2e+AxKpgHn6WTzXzZBw=", "admin_installment"=>{"name"=>"i1", "credit_card_ids"=>["", "3", "6", "20"], "credit_cards_attributes"=>{"0"=>{"id"=>"20", "_destroy"=>"false", "name"=>"card3"}}}, "carnival-options-select-credit_card"=>"-1", "commit"=>"Atualizar", "id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Unpermitted parameters: _destroy Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-credit_card, commit, id  (0.1ms) begin transaction Admin::CreditCard Load (1.2ms) SELECT "credit_cards".* FROM "credit_cards" WHERE "credit_cards"."id" IN (3, 6, 20) Admin::CreditCard Load (0.1ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] SQL (3.0ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 20:31:34.163029"], ["credit_card_id", 3], ["installment_id", 9], ["updated_at", "2014-08-07 20:31:34.163029"]] SQL (0.1ms) INSERT INTO "installments_credit_cads" ("created_at", "credit_card_id", "installment_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-08-07 20:31:34.169335"], ["credit_card_id", 6], ["installment_id", 9], ["updated_at", "2014-08-07 20:31:34.169335"]]  (2.5ms) commit transaction Redirected to http://localhost:3021/admin/installments Completed 302 Found in 42ms (ActiveRecord: 10.0ms) Started GET "/admin/installments" for 10.0.2.2 at 2014-08-07 20:31:34 +0000 Processing by Admin::InstallmentsController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (66.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (199.9ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (53.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 582ms (Views: 574.5ms | ActiveRecord: 4.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:39 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:40 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:40 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:31:41 +0000 Started GET "/admin/installments.json?sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=false&_=1407443497501" for 10.0.2.2 at 2014-08-07 20:31:41 +0000 Processing by Admin::InstallmentsController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"4", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "_"=>"1407443497501"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "installments" Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" INNER JOIN "installments_credit_cads" ON "installments_credit_cads"."installment_id" = "installments"."id" INNER JOIN "credit_cards" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" ORDER BY installments.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 153ms (Views: 145.9ms | ActiveRecord: 4.2ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 20:31:41 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 20:31:41 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 20:31:42 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 20:31:42 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:31:44 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.9ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Admin::CreditCard Load (1.6ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.5ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (65.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (61.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (523.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (612.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (649.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (700.1ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1048ms (Views: 1031.5ms | ActiveRecord: 9.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:47 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:31:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:48 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:51 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:31:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:31:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:31:51 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:34:16 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.2ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Admin::CreditCard Load (1.4ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (50.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (463.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (548.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (589.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (671.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1014ms (Views: 1002.9ms | ActiveRecord: 7.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:19 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:34:23 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:34:24 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:34:55 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Admin::CreditCard Load (2.1ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (225.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (320.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (358.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (393.4ms) Carnival::AdminUserNotification Load (2.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 908ms (Views: 742.6ms | ActiveRecord: 19.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:57 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:57 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:57 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:58 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:34:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:34:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:01 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:02 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:02 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:35:02 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:35:03 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:35:10 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.4ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::CreditCard Load (2.5ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (349.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (442.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (478.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (514.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1036ms (Views: 874.3ms | ActiveRecord: 17.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:17 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:35:18 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:35:18 +0000 Started GET "/admin/installments/9/edit" for 10.0.2.2 at 2014-08-07 20:35:36 +0000 Processing by Admin::InstallmentsController#edit as HTML Parameters: {"id"=>"9"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Installment Load (1.3ms) SELECT "installments".* FROM "installments" WHERE "installments"."id" = ? LIMIT 1 [["id", 9]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::CreditCard Load (1.8ms) SELECT "credit_cards".* FROM "credit_cards" INNER JOIN "installments_credit_cads" ON "credit_cards"."id" = "installments_credit_cads"."credit_card_id" WHERE "installments_credit_cads"."installment_id" = ? [["installment_id", 9]] Admin::CreditCard Load (1.3ms) SELECT "credit_cards".* FROM "credit_cards" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (102.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (49.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (652.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (750.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (786.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (822.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1408ms (Views: 1189.0ms | ActiveRecord: 17.5ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:39 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 20:35:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:43 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 20:35:43 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 20:35:44 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 20:35:44 +0000 Started GET "/" for 10.0.2.2 at 2014-08-07 21:05:11 +0000 Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (0.7ms) Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-08-07 21:05:14 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (100.0ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (247.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 815ms (Views: 604.7ms | ActiveRecord: 9.7ms) Started GET "/admin" for 10.0.2.2 at 2014-08-07 21:05:15 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (100.4ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (234.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 603ms (Views: 594.8ms | ActiveRecord: 4.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:16 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:22 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:22 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:05:22 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:05:23 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:05:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:05:23 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 21:05:23 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:05:24 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1407445519406" for 10.0.2.2 at 2014-08-07 21:05:24 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1407445519406"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 106ms (Views: 98.3ms | ActiveRecord: 4.1ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 21:05:24 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-08-07 21:05:24 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 21:05:25 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 21:05:25 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 21:05:28 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-08-07 21:05:31 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (103.9ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (291.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 640ms (Views: 620.3ms | ActiveRecord: 5.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:33 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:37 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:37 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:38 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:05:38 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:05:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:05:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:05:39 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 21:05:39 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:05:39 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407445535029" for 10.0.2.2 at 2014-08-07 21:05:39 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407445535029"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" INNER JOIN "states" ON "states"."country_id" = "countries"."id" INNER JOIN "cities" ON "cities"."country_id" = "countries"."id" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 515ms (Views: 506.0ms | ActiveRecord: 4.9ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-07 21:05:40 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 21:05:40 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 21:05:41 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 21:05:41 +0000 Started GET "/admin/countries/new" for 10.0.2.2 at 2014-08-07 21:05:41 +0000 Processing by Admin::CountriesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (14.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (189.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (337.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (475.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (697.1ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (41.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (903.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (947.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (983.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1329ms (Views: 1314.0ms | ActiveRecord: 12.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:43 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:43 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:44 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:44 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:05:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:46 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:46 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:47 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:48 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:48 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:05:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:05:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:05:48 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:05:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:05:49 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:05:49 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:05:49 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:05:50 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:05:50 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:07:10 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (24.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.1ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.1ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.0ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (120.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (546.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (592.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (630.1ms) Completed 500 Internal Server Error in 737ms NameError - uninitialized constant Admin::JobPresenter: activesupport (4.1.4) lib/active_support/dependencies.rb:518:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/presenters/carnival/base_admin_presenter.rb:312:in `presenter_to_field' /project/app/view_objects/carnival/nested_form_options.rb:145:in `populate_available_options' /project/app/view_objects/carnival/nested_form_options.rb:14:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:7:in `__project_app_views_carnival_shared_form__nested_form_html_haml___18882845_103720440' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__995717245_96545210' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__995717245_96545210' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__995717245_96545210' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___1032389812_101536830' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___1032389812_101536830' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__624739816_102267650' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:71:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:68:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/102979880/variables" for 10.0.2.2 at 2014-08-07 21:07:12 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:07:51 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.5ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (86.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.8ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (711.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (758.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (794.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1311ms (Views: 1140.5ms | ActiveRecord: 19.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:07:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:58 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:07:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:07:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:07:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:08:00 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:08:00 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:08:00 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:08:00 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:08:00 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:08:01 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-08-07 21:08:01 +0000 Started GET "/assets/carnival/images/ui-bg_glass_55_fbf9ee_1x400.png" for 10.0.2.2 at 2014-08-07 21:08:03 +0000 Started GET "/assets/carnival/images/ui-bg_highlight-soft_75_cccccc_1x100.png" for 10.0.2.2 at 2014-08-07 21:08:03 +0000 Started GET "/assets/carnival/images/ui-icons_222222_256x240.png" for 10.0.2.2 at 2014-08-07 21:08:04 +0000 Started GET "/assets/carnival/images/ui-bg_glass_75_e6e6e6_1x400.png" for 10.0.2.2 at 2014-08-07 21:08:04 +0000 Started GET "/assets/carnival/images/ui-bg_glass_75_dadada_1x400.png" for 10.0.2.2 at 2014-08-07 21:08:04 +0000 Started GET "/assets/carnival/images/ui-bg_glass_65_ffffff_1x400.png" for 10.0.2.2 at 2014-08-07 21:08:05 +0000 Started GET "/assets/carnival/images/ui-icons_454545_256x240.png" for 10.0.2.2 at 2014-08-07 21:08:08 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:08:39 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.3ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (118.2ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (700.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (745.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (779.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1296ms (Views: 1124.2ms | ActiveRecord: 21.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:41 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:42 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:08:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:44 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:46 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:08:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:08:47 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:08:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:08:47 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:08:48 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:08:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:08:48 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:08:48 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:08:48 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:10:59 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.3ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.2ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (653.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (754.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (789.1ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1321ms (Views: 1141.3ms | ActiveRecord: 20.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:01 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:02 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:02 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:03 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:11:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:04 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:04 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:05 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:05 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:05 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:05 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:06 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:06 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:07 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:11:07 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:11:07 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:11:07 +0000 Started GET "/assets/carnival/images/ui-bg_flat_75_ffffff_40x100.png" for 10.0.2.2 at 2014-08-07 21:11:08 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:11:30 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (64.2ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.7ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.0ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (518.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (562.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (596.5ms) Completed 500 Internal Server Error in 844ms NoMethodError - undefined method `person_histories' for #: activemodel (4.1.4) lib/active_model/attribute_methods.rb:435:in `method_missing' activerecord (4.1.4) lib/active_record/attribute_methods.rb:208:in `method_missing' /project/app/view_objects/carnival/nested_form_options.rb:137:in `populate_model_items' /project/app/view_objects/carnival/nested_form_options.rb:13:in `initialize' /project/app/views/carnival/shared/form/_nested_form.html.haml:7:in `__project_app_views_carnival_shared_form__nested_form_html_haml___18882845_103720440' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__995717245_96545210' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__995717245_96545210' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__995717245_96545210' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___1032389812_101536830' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.1.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.1.4) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.2) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___1032389812_101536830' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.1.4) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__624739816_102267650' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:71:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:68:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/103330950/variables" for 10.0.2.2 at 2014-08-07 21:11:31 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:11:59 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (114.7ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.0ms) Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (52.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (175.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (844.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (890.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (963.0ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1481ms (Views: 1303.8ms | ActiveRecord: 23.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:01 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:02 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:02 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:02 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:03 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:12:03 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:04 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:04 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:04 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:05 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:05 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:05 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:05 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:06 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:06 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:06 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:12:07 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:12:07 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:12:07 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:18:57 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (69.8ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.1ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (75.0ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (55.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (217.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (946.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (998.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1123.3ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (48.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (50.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.6ms) Completed 200 OK in 2306ms (Views: 2069.2ms | ActiveRecord: 19.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:00 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:01 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:01 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:02 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:02 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:19:02 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:03 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:04 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:05 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:05 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:05 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:19:06 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:19:06 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:19:06 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:25:31 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (71.3ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (90.0ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.8ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (51.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (167.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (848.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (891.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (929.5ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (38.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1455ms (Views: 1276.8ms | ActiveRecord: 23.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:34 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:34 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:35 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:35 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:35 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:25:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:37 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:37 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:37 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:25:39 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:25:39 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:25:39 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:25:40 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:25:40 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:25:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:25:40 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:25:40 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:25:41 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:26:10 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.7ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.2ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.6ms) Admin::Country Load (1.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (44.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (161.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (826.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (870.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (908.1ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1431ms (Views: 1257.7ms | ActiveRecord: 23.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:26:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:17 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:18 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:18 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:26:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:26:19 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:26:19 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:28:24 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (3.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.5ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (35.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (87.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (589.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (623.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (658.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1426ms (Views: 1413.5ms | ActiveRecord: 9.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:27 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:28:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:28 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:28 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:31 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:28:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:28:32 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:28:32 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:28:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:28:33 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:28:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:28:33 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:28:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:28:34 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:28:34 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:28:34 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:28:34 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:28:35 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 10.0.2.2 at 2014-08-07 21:28:35 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:28:35 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:28:59 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.8ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.1ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.3ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (36.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (153.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (784.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (830.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (866.7ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (0.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1503ms (Views: 1270.0ms | ActiveRecord: 21.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:02 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:03 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:03 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:04 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:05 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:05 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:05 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:07 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:29:08 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:29:08 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:29:08 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:29:09 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:29:09 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:29:09 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:09 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:29:10 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:29:10 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:10 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:10 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:11 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 10.0.2.2 at 2014-08-07 21:29:11 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:11 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:29:26 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.4ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (35.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (85.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (642.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (677.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (715.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1072ms (Views: 1060.9ms | ActiveRecord: 7.9ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:28 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:28 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:29 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:29:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:30 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:30 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:33 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:29:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:29:34 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:29:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:29:34 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:29:34 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:29:35 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:29:35 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:29:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:29:36 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:36 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:36 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:36 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-07 21:29:36 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (17.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/assets/ckeditor/skins/moono/icons.png" for 10.0.2.2 at 2014-08-07 21:29:37 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:29:37 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-07 21:29:37 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.2ms) Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:30:00 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.4ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.6ms) Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.3ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (54.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (253.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (933.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (984.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1105.9ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (50.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.6ms) Completed 200 OK in 2395ms (Views: 2117.3ms | ActiveRecord: 21.3ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:03 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:03 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:04 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:04 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:04 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:04 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:05 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:05 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:05 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:06 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:06 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:06 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:07 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:07 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:07 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:08 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:08 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:09 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:09 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:09 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:09 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:30:10 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:30:10 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:30:10 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:30:10 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:30:11 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:30:11 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:30:11 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:30:11 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-07 21:30:16 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (101.8ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.8ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.9ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (41.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (158.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (810.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (854.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (891.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1467ms (Views: 1287.5ms | ActiveRecord: 21.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:18 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:20 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:20 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:30:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:20 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:21 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:22 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:22 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:22 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:23 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:23 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:30:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:30:24 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:30:24 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-07 21:30:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:30:25 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-07 21:30:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:30:25 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:30:25 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-07 21:30:26 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:30:26 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:30:26 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:30:26 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-08-07 21:30:27 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 10.0.2.2 at 2014-08-07 21:30:27 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-08-07 21:30:27 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-08-07 21:32:15 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (114.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (319.1ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 746ms (Views: 670.1ms | ActiveRecord: 3.9ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:19 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:19 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:22 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:22 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:23 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:32:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:32:23 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:32:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:32:24 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 21:32:24 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:32:24 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-07 21:32:25 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407447139621" for 10.0.2.2 at 2014-08-07 21:32:25 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407447139621"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" INNER JOIN "states" ON "states"."country_id" = "countries"."id" INNER JOIN "cities" ON "cities"."country_id" = "countries"."id" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 518ms (Views: 510.0ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 21:32:26 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 21:32:26 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 21:32:26 +0000 Started GET "/admin/countries" for 10.0.2.2 at 2014-08-07 21:32:47 +0000 Processing by Admin::CountriesController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (111.1ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (310.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 832ms (Views: 669.7ms | ActiveRecord: 10.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:49 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:49 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:49 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:51 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-07 21:32:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:51 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:51 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:52 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:53 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:53 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:54 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:54 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:54 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:54 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:55 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:55 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-07 21:32:55 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-07 21:32:55 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-07 21:32:55 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-07 21:32:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-07 21:32:56 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-07 21:32:56 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-07 21:32:56 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-07 21:32:57 +0000 Started GET "/admin/countries.json?sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortingCols=0&bSortable_0=false&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407447171784" for 10.0.2.2 at 2014-08-07 21:32:57 +0000 Processing by Admin::CountriesController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407447171784"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "countries" Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" INNER JOIN "states" ON "states"."country_id" = "countries"."id" INNER JOIN "cities" ON "cities"."country_id" = "countries"."id" ORDER BY countries.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 496ms (Views: 488.5ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-07 21:32:58 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-07 21:32:58 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-07 21:32:58 +0000 Started GET "/admin/countries.csv" for 10.0.2.2 at 2014-08-07 21:33:00 +0000 Processing by Admin::CountriesController#index as CSV Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" INNER JOIN "states" ON "states"."country_id" = "countries"."id" INNER JOIN "cities" ON "cities"."country_id" = "countries"."id" ORDER BY countries.id asc Rendered text template (0.0ms) Completed 200 OK in 424ms (Views: 20.0ms | ActiveRecord: 3.1ms) Started GET "/" for 10.0.2.2 at 2014-08-08 13:43:48 +0000 ActiveRecord::SchemaMigration Load (2.0ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (8.5ms) Completed 200 OK in 222ms (Views: 221.6ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-08-08 13:44:05 +0000 Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 92ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-08 13:44:06 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (4.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (135.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 3304ms (Views: 3280.6ms | ActiveRecord: 1.6ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:12 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:12 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:14 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:16 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:17 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 13:44:18 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 13:44:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 13:44:18 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-08 13:44:19 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.0ms) Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-08 13:44:23 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"czNwFSD47HiXv2y8XQBCGdsMUk2msxq40cxgDKnt7k8=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 401 Unauthorized in 55ms Processing by Carnival::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"czNwFSD47HiXv2y8XQBCGdsMUk2msxq40cxgDKnt7k8=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Rendered /project/app/views/admin_users/shared/_links.html.haml (1.2ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (34.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 410ms (Views: 327.1ms | ActiveRecord: 0.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:25 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:26 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:27 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:29 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:30 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-08 13:44:41 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"czNwFSD47HiXv2y8XQBCGdsMUk2msxq40cxgDKnt7k8=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (2.8ms) UPDATE "admin_users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["current_sign_in_at", "2014-08-08 13:44:42.023549"], ["last_sign_in_at", "2014-08-07 17:02:03.357456"], ["sign_in_count", 8], ["updated_at", "2014-08-08 13:44:42.024878"]]  (2.1ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 106ms (ActiveRecord: 6.5ms) Started GET "/admin" for 10.0.2.2 at 2014-08-08 13:44:42 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (192.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (10.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (18.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (502.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (118.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1366ms (Views: 992.4ms | ActiveRecord: 6.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:43 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:43 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:44 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 13:44:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:46 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:46 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:48 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:49 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:49 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 13:44:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 13:44:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 13:44:50 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 13:44:50 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-08-08 13:44:50 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 13:44:51 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1407505488144" for 10.0.2.2 at 2014-08-08 13:44:51 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1407505488144"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 103ms (Views: 96.1ms | ActiveRecord: 4.3ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 13:44:51 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 13:44:51 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 13:45:01 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (78.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (121.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (365.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (634.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (698.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (746.2ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1117ms (Views: 1066.8ms | ActiveRecord: 11.8ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:03 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:03 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:03 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:04 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:04 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:04 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:04 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:04 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:05 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:05 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:06 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:06 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:07 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:08 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:08 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:45:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 13:45:09 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 13:45:09 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 13:45:09 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 13:45:09 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 13:45:56 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (99.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (187.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (343.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (378.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (412.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (48.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 789ms (Views: 780.4ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:57 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:59 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 13:45:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:00 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:00 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:02 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 13:46:03 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 13:46:04 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 13:46:08 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.2ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (111.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (318.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (358.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (393.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (77.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 965ms (Views: 788.3ms | ActiveRecord: 16.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:09 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 13:46:11 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:12 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:12 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:12 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:13 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:14 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:15 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 13:46:15 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 13:46:15 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 13:46:15 +0000 Started GET "/" for 10.0.2.2 at 2014-08-08 17:03:20 +0000 ActiveRecord::SchemaMigration Load (1.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (8.8ms) Completed 200 OK in 46ms (Views: 45.3ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-08-08 17:03:23 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (319.5ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (8.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (5.9ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (552.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (103.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 2815ms (Views: 2253.9ms | ActiveRecord: 7.7ms) Started GET "/admin" for 10.0.2.2 at 2014-08-08 17:03:26 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (95.8ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (224.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (48.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 610ms (Views: 602.6ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:29 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:29 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:03:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:30 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:30 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:33 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:33 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:34 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:03:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:03:34 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:03:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:03:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:03:35 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:03:35 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:03:36 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=false&_=1407517410475" for 10.0.2.2 at 2014-08-08 17:03:36 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"false", "_"=>"1407517410475"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Completed 200 OK in 127ms (Views: 118.7ms | ActiveRecord: 4.5ms) Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 17:03:36 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-08-08 17:03:36 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 17:03:37 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 17:03:37 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-08 17:03:37 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (17.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.1ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:14:36 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.9ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (166.9ms)  (1.3ms) SELECT COUNT(*) FROM "states"  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (40.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (338.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (49.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 778ms (Views: 710.9ms | ActiveRecord: 12.7ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:38 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:38 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:39 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:39 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:39 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:14:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:40 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:40 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:43 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:43 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:44 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:14:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:14:44 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 17:14:44 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518080585" for 10.0.2.2 at 2014-08-08 17:14:45 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407518080585"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" INNER JOIN "cities" ON "cities"."state_id" = "states"."id" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 274ms (Views: 264.4ms | ActiveRecord: 5.7ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 17:14:45 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:14:47 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:16:47 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (163.8ms)  (1.4ms) SELECT COUNT(*) FROM "states"  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (314.8ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 899ms (Views: 666.8ms | ActiveRecord: 19.4ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:16:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:49 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:49 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:50 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:50 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:50 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:50 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:51 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:51 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:51 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:16:51 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:52 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:52 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:52 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:52 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:53 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:53 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:53 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:53 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:54 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:54 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:54 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:55 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:55 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:55 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:55 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:16:55 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:16:56 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:16:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:16:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:16:56 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:16:57 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:16:57 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518212266" for 10.0.2.2 at 2014-08-08 17:16:57 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407518212266"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.9ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.5ms) SELECT "states".* FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" INNER JOIN "cities" ON "cities"."state_id" = "states"."id" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 237ms (Views: 226.9ms | ActiveRecord: 6.3ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 17:16:57 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 17:16:58 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 17:16:58 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 17:16:58 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 17:16:58 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:17:49 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (34.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (256.4ms)  (1.5ms) SELECT COUNT(*) FROM "states"  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (59.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (544.0ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (61.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (53.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.6ms) Completed 200 OK in 1947ms (Views: 1586.2ms | ActiveRecord: 19.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:17:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:54 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:54 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:57 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:57 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:58 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:17:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:17:58 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518274524" for 10.0.2.2 at 2014-08-08 17:17:58 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407518274524"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.6ms) SELECT "states".* FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" INNER JOIN "cities" ON "cities"."state_id" = "states"."id" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 272ms (Views: 263.5ms | ActiveRecord: 6.0ms) Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:18:36 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:18:44 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (35.7ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (176.5ms)  (1.4ms) SELECT COUNT(*) FROM "states"  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.7ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (13.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (324.1ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 948ms (Views: 756.3ms | ActiveRecord: 19.2ms) Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:18:45 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:47 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:18:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:48 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:48 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:48 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:51 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:51 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:18:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:18:52 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:18:52 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518328556" for 10.0.2.2 at 2014-08-08 17:18:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407518328556"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 233ms (Views: 222.2ms | ActiveRecord: 8.5ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 17:18:53 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 17:18:53 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:19:14 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.0ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.5ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (186.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (651.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (946.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (997.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1034.4ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1404ms (Views: 1386.1ms | ActiveRecord: 13.1ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:17 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:18 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:19 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:19:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:19:22 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 17:19:22 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 17:19:22 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:19:56 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.3ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.8ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (96.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (67.1ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (146.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (545.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (715.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (749.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (783.3ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1138ms (Views: 1120.8ms | ActiveRecord: 12.5ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:59 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:19:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:20:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:20:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:20:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:01 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:20:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:20:04 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:20:06 +0000 Started PATCH "/admin/states/1" for 10.0.2.2 at 2014-08-08 17:21:46 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"São Paulo", "code"=>"SP", "country_id"=>"1", "city_ids"=>[""], "cities_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"1", "name"=>"São Paulo", "country_id"=>"1"}, "1"=>{"id"=>"2", "_destroy"=>"false", "name"=>"Campinas", "country_id"=>"1"}}}, "carnival-options-select-city"=>"-1", "commit"=>"Atualizar", "id"=>"1"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-city, commit, id  (0.1ms) begin transaction Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] SQL (2.2ms) UPDATE "cities" SET "state_id" = NULL WHERE "cities"."state_id" = ? AND "cities"."id" IN (1, 2) [["state_id", 1]]  (2.8ms) rollback transaction Completed 404 Not Found in 22ms ActiveRecord::RecordNotFound - Couldn't find Admin::City with ID=1 for Admin::State with ID=1: activerecord (4.1.4) lib/active_record/nested_attributes.rb:545:in `raise_nested_attributes_record_not_found!' activerecord (4.1.4) lib/active_record/nested_attributes.rb:482:in `block in assign_nested_attributes_for_collection_association' activerecord (4.1.4) lib/active_record/nested_attributes.rb:460:in `assign_nested_attributes_for_collection_association' activerecord (4.1.4) lib/active_record/nested_attributes.rb:343:in `cities_attributes=' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:45:in `_assign_attribute' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:56:in `block in assign_nested_parameter_attributes' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:56:in `assign_nested_parameter_attributes' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:36:in `assign_attributes' activerecord (4.1.4) lib/active_record/persistence.rb:231:in `block in update' activerecord (4.1.4) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.4) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.4) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.4) lib/active_record/persistence.rb:230:in `update' inherited_resources (1.5.0) lib/inherited_resources/base_helpers.rb:85:in `update_resource' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:45:in `update' /project/app/controllers/carnival/base_admin_controller.rb:99:in `update' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/107182200/variables" for 10.0.2.2 at 2014-08-08 17:21:46 +0000 Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:21:56 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.0ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Admin::State Load (2.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (84.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (469.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (671.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (707.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (742.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (50.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1122ms (Views: 1105.1ms | ActiveRecord: 13.5ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:21:59 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:00 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:22:04 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:22:06 +0000 Started PATCH "/admin/states/1" for 10.0.2.2 at 2014-08-08 17:22:09 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"São Paulo", "code"=>"SP", "country_id"=>"1", "city_ids"=>["", "1"], "cities_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"false", "name"=>"São Paulo", "country_id"=>"1"}, "1"=>{"id"=>"2", "_destroy"=>"false", "name"=>"Campinas", "country_id"=>"1"}}}, "carnival-options-select-city"=>"-1", "commit"=>"Atualizar", "id"=>"1"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-city, commit, id  (0.1ms) begin transaction Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] SQL (2.0ms) UPDATE "cities" SET "state_id" = NULL WHERE "cities"."state_id" = ? AND "cities"."id" IN (2) [["state_id", 1]]  (2.5ms) rollback transaction Completed 404 Not Found in 22ms ActiveRecord::RecordNotFound - Couldn't find Admin::City with ID=2 for Admin::State with ID=1: activerecord (4.1.4) lib/active_record/nested_attributes.rb:545:in `raise_nested_attributes_record_not_found!' activerecord (4.1.4) lib/active_record/nested_attributes.rb:482:in `block in assign_nested_attributes_for_collection_association' activerecord (4.1.4) lib/active_record/nested_attributes.rb:460:in `assign_nested_attributes_for_collection_association' activerecord (4.1.4) lib/active_record/nested_attributes.rb:343:in `cities_attributes=' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:45:in `_assign_attribute' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:56:in `block in assign_nested_parameter_attributes' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:56:in `assign_nested_parameter_attributes' activerecord (4.1.4) lib/active_record/attribute_assignment.rb:36:in `assign_attributes' activerecord (4.1.4) lib/active_record/persistence.rb:231:in `block in update' activerecord (4.1.4) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction' activerecord (4.1.4) lib/active_record/transactions.rb:208:in `transaction' activerecord (4.1.4) lib/active_record/transactions.rb:326:in `with_transaction_returning_status' activerecord (4.1.4) lib/active_record/persistence.rb:230:in `update' inherited_resources (1.5.0) lib/inherited_resources/base_helpers.rb:85:in `update_resource' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:45:in `update' /project/app/controllers/carnival/base_admin_controller.rb:99:in `update' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-631232248/variables" for 10.0.2.2 at 2014-08-08 17:22:09 +0000 Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:22:20 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.2ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) CACHE (0.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (85.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (485.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (644.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (723.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (756.5ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1124ms (Views: 1107.0ms | ActiveRecord: 12.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:22 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:23 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:22:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:24 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:24 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:27 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:22:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:22:28 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:22:30 +0000 Started PATCH "/admin/states/1" for 10.0.2.2 at 2014-08-08 17:23:13 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"São Paulo", "code"=>"SP", "country_id"=>"1", "city_ids"=>["", "1", "2"], "cities_attributes"=>{"0"=>{"id"=>"1", "_destroy"=>"false", "name"=>"São Paulo", "country_id"=>"1"}, "1"=>{"id"=>"2", "_destroy"=>"false", "name"=>"Campinas", "country_id"=>"1"}}}, "carnival-options-select-city"=>"-1", "commit"=>"Atualizar", "id"=>"1"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-city, commit, id  (0.1ms) begin transaction Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" IN (1, 2) Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::State Exists (0.2ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 'SP' AND "states"."id" != 1) LIMIT 1  (0.2ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 38ms (ActiveRecord: 7.0ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:23:13 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (183.6ms)  (1.1ms) SELECT COUNT(*) FROM "states"  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (11.5ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (328.8ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 676ms (Views: 664.6ms | ActiveRecord: 9.0ms) Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:14 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:15 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:15 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:15 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:16 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:16 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:17 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:17 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:17 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:17 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:18 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:18 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:18 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:18 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:19 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:19 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:20 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:20 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:20 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:20 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:23:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:23:21 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:23:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:23:22 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:23:22 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:23:22 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407518597383" for 10.0.2.2 at 2014-08-08 17:23:22 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407518597383"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 116ms (Views: 105.2ms | ActiveRecord: 7.1ms) Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 17:23:23 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 17:23:23 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 17:23:23 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 17:23:23 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 17:23:24 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:23:28 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.2ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (475.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (684.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (719.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (763.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (52.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1155ms (Views: 1137.4ms | ActiveRecord: 12.2ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:32 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:23:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:32 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:33 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:33 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:34 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:35 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:35 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:23:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:23:36 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:23:36 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 17:23:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:23:37 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 17:23:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:23:37 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:23:38 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:23:38 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:33:18 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (2.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.1ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.5ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.1ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (85.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (512.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (668.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (704.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (738.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1112ms (Views: 1089.5ms | ActiveRecord: 15.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:20 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:22 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:25 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:33:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:33:26 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 17:33:26 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:33:26 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:33:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 17:33:27 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:33:28 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:33:28 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:33:30 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (134.8ms)  (1.2ms) SELECT COUNT(*) FROM "states"  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.8ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (13.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (279.4ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 625ms (Views: 612.3ms | ActiveRecord: 9.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:31 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:32 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:33 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:33 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:35 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:37 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:37 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:33:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:33:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:33:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:33:38 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:33:38 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:33:38 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 17:33:39 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407519213979" for 10.0.2.2 at 2014-08-08 17:33:39 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407519213979"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.8ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 2) Completed 200 OK in 136ms (Views: 123.6ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 17:33:39 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 17:33:40 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 17:33:40 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 17:33:40 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 17:33:41 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (175.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (376.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (409.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (444.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 833ms (Views: 824.4ms | ActiveRecord: 5.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:43 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:43 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:44 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:44 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:44 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 17:33:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:45 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:45 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:46 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:46 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:46 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:47 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:48 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:48 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:33:48 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 17:33:48 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 17:33:49 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 17:33:49 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 17:33:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 17:33:49 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 17:33:49 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 17:33:50 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 17:33:50 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-08-08 17:34:02 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.2ms) Completed 200 OK in 56ms (Views: 1.5ms | ActiveRecord: 3.0ms) Started POST "/admin/states" for 10.0.2.2 at 2014-08-08 17:34:28 +0000 Processing by Admin::StatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"State1", "code"=>"S1", "country_id"=>"1", "city_ids"=>[""], "cities_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"nome", "country_id"=>"1"}, "1"=>{"id"=>"", "_destroy"=>"false", "name"=>"nom2", "country_id"=>"1"}, "6"=>{"id"=>"", "_destroy"=>"false", "name"=>"nome3", "country_id"=>"1"}}}, "carnival-options-select-city"=>"-1", "commit"=>"Criar"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: utf8, authenticity_token, carnival-options-select-city, commit  (0.1ms) begin transaction Admin::State Exists (1.5ms) SELECT 1 AS one FROM "states" WHERE "states"."code" = 'S1' LIMIT 1 SQL (2.8ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "S1"], ["country_id", 1], ["created_at", "2014-08-08 17:34:29.086849"], ["name", "State1"], ["updated_at", "2014-08-08 17:34:29.086849"]] SQL (1.0ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", "2014-08-08 17:34:29.091601"], ["name", "nome"], ["state_id", 3], ["updated_at", "2014-08-08 17:34:29.091601"]] SQL (0.1ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", "2014-08-08 17:34:29.094136"], ["name", "nom2"], ["state_id", 3], ["updated_at", "2014-08-08 17:34:29.094136"]] SQL (0.1ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", "2014-08-08 17:34:29.095543"], ["name", "nome3"], ["state_id", 3], ["updated_at", "2014-08-08 17:34:29.095543"]]  (4.1ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 33ms (ActiveRecord: 11.3ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 17:34:29 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (142.5ms)  (1.2ms) SELECT COUNT(*) FROM "states"  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.6ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (11.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (298.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 680ms (Views: 668.4ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:30 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:30 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:34:30 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 17:34:30 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 17:34:31 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 17:34:31 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 17:34:31 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407519270073" for 10.0.2.2 at 2014-08-08 17:34:31 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407519270073"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 3, 2) Completed 200 OK in 163ms (Views: 152.8ms | ActiveRecord: 6.9ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 17:34:32 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 17:34:48 +0000 Started GET "/admin/states/1/edit" for 10.0.2.2 at 2014-08-08 17:34:49 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"1"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 1]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (142.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (527.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (697.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (732.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (776.3ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1110ms (Views: 1093.7ms | ActiveRecord: 12.3ms) Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:50 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407519294134" for 10.0.2.2 at 2014-08-08 17:34:54 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407519294134"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.5ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.2ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (1, 3, 2) Completed 200 OK in 214ms (Views: 203.7ms | ActiveRecord: 6.9ms) Started GET "/admin/states/3/edit" for 10.0.2.2 at 2014-08-08 17:34:56 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"3"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.4ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 3]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (98.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] CACHE (0.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (89.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (51.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (139.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (665.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (820.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (855.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (889.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1237ms (Views: 1218.3ms | ActiveRecord: 12.6ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:58 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:58 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:59 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:34:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:00 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:01 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:35:01 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 17:38:19 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (70.8ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.6ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.3ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (54.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (231.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (805.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (853.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (889.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1239ms (Views: 1214.1ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:21 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:21 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:21 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:22 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:24 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:24 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:26 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 17:38:26 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-08-08 17:38:27 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-08-08 17:38:27 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-08-08 17:38:27 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-08-08 17:38:28 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 10.0.2.2 at 2014-08-08 17:38:28 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-08-08 17:38:28 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 18:12:01 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (38.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (134.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (411.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (456.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (588.3ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (49.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (12.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.7ms) Completed 200 OK in 1912ms (Views: 1640.2ms | ActiveRecord: 14.8ms) Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:04 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:04 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:04 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:04 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:05 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:05 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:05 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:07 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:12:08 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 18:15:19 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (40.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (210.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (286.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (321.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 673ms (Views: 664.1ms | ActiveRecord: 5.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:20 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:23 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:23 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:25 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:15:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 18:15:26 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 18:15:27 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 18:15:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 18:15:27 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 18:15:27 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:15:28 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 18:15:28 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 18:15:30 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (38.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (195.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (230.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (270.6ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 624ms (Views: 614.4ms | ActiveRecord: 6.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:31 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:32 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:33 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:33 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:35 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:36 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:15:37 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 18:15:37 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 18:15:37 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 18:15:38 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 18:15:38 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 18:15:38 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:15:38 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 18:15:39 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 18:15:49 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (39.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (200.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (280.7ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (313.3ms) Carnival::AdminUserNotification Load (3.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (13.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 695ms (Views: 684.0ms | ActiveRecord: 7.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:50 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:50 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:51 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:15:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:53 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:53 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:53 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:54 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:54 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:56 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:15:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:15:56 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:15:56 +0000 Started GET "/admin/cities.json?url=%2Fadmin%2Fcities.json&list_scope=true&model_class_name=Admin%3A%3AState&model_id=&field_name=cities&scope_name=country_id&scope_html_id=admin_state_country_id&presenter_name=Admin%3A%3AStatePresenter&controller_name=Admin%3A%3ACitiesController&has_new_action=true&carnival_list_scope%5Bcountry_id%5D=1" for 10.0.2.2 at 2014-08-08 18:16:01 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"url"=>"/admin/cities.json", "list_scope"=>"true", "model_class_name"=>"Admin::State", "model_id"=>"", "field_name"=>"cities", "scope_name"=>"country_id", "scope_html_id"=>"admin_state_country_id", "presenter_name"=>"Admin::StatePresenter", "controller_name"=>"Admin::CitiesController", "has_new_action"=>"true", "carnival_list_scope"=>{"country_id"=>"1"}} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.1ms) Completed 200 OK in 157ms (Views: 2.3ms | ActiveRecord: 3.3ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-08 18:16:20 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (133.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (277.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (506.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (546.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (580.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1206ms (Views: 993.3ms | ActiveRecord: 15.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:22 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:23 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:23 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:24 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:24 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:24 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:27 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:27 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:28 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:16:28 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:16:28 +0000 Started POST "/admin/states" for 10.0.2.2 at 2014-08-08 18:16:52 +0000 Processing by Admin::StatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "cities_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"city11", "country_id"=>"1"}, "3"=>{"id"=>"", "_destroy"=>"false", "name"=>"city2", "country_id"=>"1"}}}, "commit"=>"Criar"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Unpermitted parameters: utf8, authenticity_token, commit  (0.1ms) begin transaction Admin::State Exists (1.7ms) SELECT 1 AS one FROM "states" WHERE "states"."code" = 's2' LIMIT 1 SQL (2.7ms) INSERT INTO "states" ("code", "country_id", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["code", "s2"], ["country_id", 1], ["created_at", "2014-08-08 18:16:52.530030"], ["name", "state2"], ["updated_at", "2014-08-08 18:16:52.530030"]] SQL (1.4ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", "2014-08-08 18:16:52.535009"], ["name", "city11"], ["state_id", 4], ["updated_at", "2014-08-08 18:16:52.535009"]] SQL (0.1ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", "2014-08-08 18:16:52.538008"], ["name", "city2"], ["state_id", 4], ["updated_at", "2014-08-08 18:16:52.538008"]]  (2.6ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 46ms (ActiveRecord: 10.2ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 18:16:52 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (152.7ms)  (2.2ms) SELECT COUNT(*) FROM "states"  (1.9ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.7ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (28.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.6ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (391.9ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (50.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 833ms (Views: 808.2ms | ActiveRecord: 11.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:16:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:56 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:58 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:59 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:59 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 18:16:59 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:00 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:17:00 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 18:17:00 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 18:17:00 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 18:17:00 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 18:17:01 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 18:17:01 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407521816271" for 10.0.2.2 at 2014-08-08 18:17:01 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407521816271"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.6ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (2.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (4, 1, 3, 2) Completed 200 OK in 307ms (Views: 295.8ms | ActiveRecord: 8.0ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 18:17:02 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:17:04 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (24.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.8ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (107.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (450.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (622.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (658.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (694.0ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1101ms (Views: 1082.5ms | ActiveRecord: 12.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:05 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:05 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:06 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:06 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:07 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:07 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:08 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:08 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:08 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:08 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:09 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:10 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:10 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:11 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:11 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:17:11 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:17:13 +0000 Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-08 18:17:18 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "cities_attributes"=>{"0"=>{"id"=>"8", "_destroy"=>"false", "name"=>"city11", "country_id"=>"1"}, "1"=>{"id"=>"9", "_destroy"=>"1", "name"=>"city2", "country_id"=>"1"}}}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? AND "cities"."id" IN (8, 9) [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1 SQL (2.3ms) DELETE FROM "cities" WHERE "cities"."id" = ? [["id", 9]]  (2.3ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 25ms (ActiveRecord: 9.1ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 18:17:18 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.2ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.1ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (192.7ms)  (1.4ms) SELECT COUNT(*) FROM "states"  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (14.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.2ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (340.1ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 706ms (Views: 693.6ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:19 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:22 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:24 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:25 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:25 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:17:26 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407521842032" for 10.0.2.2 at 2014-08-08 18:17:26 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407521842032"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (4, 1, 3, 2) Completed 200 OK in 213ms (Views: 202.1ms | ActiveRecord: 7.0ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:17:28 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.9ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (67.5ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (139.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (349.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (512.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (546.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (580.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 935ms (Views: 919.4ms | ActiveRecord: 10.5ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:30 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:32 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:32 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:34 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:17:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:17:35 +0000 Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-08 18:17:39 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "cities_attributes"=>{"0"=>{"id"=>"8", "_destroy"=>"false", "name"=>"city11asdasdasd", "country_id"=>"1"}}}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? AND "cities"."id" IN (8) [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1 SQL (1.7ms) UPDATE "cities" SET "name" = ?, "updated_at" = ? WHERE "cities"."id" = 8 [["name", "city11asdasdasd"], ["updated_at", "2014-08-08 18:17:40.148225"]]  (2.6ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 23ms (ActiveRecord: 8.5ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 18:17:40 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (195.0ms)  (1.1ms) SELECT COUNT(*) FROM "states"  (2.0ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.3ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (13.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (346.4ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 731ms (Views: 718.4ms | ActiveRecord: 9.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:41 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:41 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:41 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:42 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:43 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:43 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:44 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:46 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:47 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:47 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:17:47 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-08 18:17:48 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-08 18:17:48 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-08 18:17:48 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-08 18:17:48 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-08 18:17:48 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407521863734" for 10.0.2.2 at 2014-08-08 18:17:49 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407521863734"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (4, 1, 3, 2) Completed 200 OK in 214ms (Views: 204.5ms | ActiveRecord: 6.9ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-08 18:17:49 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:17:52 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Admin::Country Load (3.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (2.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.7ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (144.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (341.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (515.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (556.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (593.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 971ms (Views: 952.5ms | ActiveRecord: 13.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:53 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:17:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:56 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:56 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:58 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:17:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:17:59 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:17:59 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:31:25 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.8ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (133.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (397.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (627.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (664.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (702.6ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1332ms (Views: 1106.2ms | ActiveRecord: 22.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:28 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:29 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:31:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:30 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:30 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:30 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:33 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:31:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:31:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:31:34 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:31:43 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 86ms ArgumentError - field does not support nested forms with :new and :associate modes at same time: /project/app/models/carnival/field.rb:141:in `validate' /project/app/models/carnival/field.rb:10:in `initialize' /project/app/presenters/carnival/base_admin_presenter.rb:374:in `instantiate_element' /project/app/presenters/carnival/base_admin_presenter.rb:382:in `field' app/presenters/admin/state_presenter.rb:25:in `' app/presenters/admin/state_presenter.rb:3:in `' app/presenters/admin/state_presenter.rb:2:in `' activesupport (4.1.4) lib/active_support/dependencies.rb:443:in `block in load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:633:in `new_constants_in' activesupport (4.1.4) lib/active_support/dependencies.rb:442:in `load_file' activesupport (4.1.4) lib/active_support/dependencies.rb:342:in `require_or_load' activesupport (4.1.4) lib/active_support/dependencies.rb:480:in `load_missing_constant' activesupport (4.1.4) lib/active_support/dependencies.rb:180:in `const_missing' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:133:in `carnival_presenter_class' /project/app/controllers/carnival/base_admin_controller.rb:127:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:77:in `edit' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/93482260/variables" for 10.0.2.2 at 2014-08-08 18:31:44 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:34:14 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (49.1ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (175.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.8ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (443.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (661.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (695.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (730.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (37.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1279ms (Views: 1100.2ms | ActiveRecord: 23.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:16 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:16 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:17 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:17 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:18 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:18 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:18 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:19 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:19 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:19 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:20 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:20 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:20 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:21 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:21 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:21 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:22 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:34:22 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:34:22 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:34:31 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (49.8ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (135.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (349.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (384.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (418.9ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1004ms (Views: 771.4ms | ActiveRecord: 21.6ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:33 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:33 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:33 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:33 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:34 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:34 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:34 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:35 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:35 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:35 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:35 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:36 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:36 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:36 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:36 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:37 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:37 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:38 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:38 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:38 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:34:39 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:34:39 +0000 Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-08 18:34:44 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "city_ids"=>["", "3", "8"]}, "carnival-options-select-city"=>"-1", "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-city, commit, id  (0.1ms) begin transaction Admin::City Load (2.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" IN (3, 8) Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] SQL (1.9ms) UPDATE "cities" SET "state_id" = ?, "updated_at" = ? WHERE "cities"."id" = 3 [["state_id", 4], ["updated_at", "2014-08-08 18:34:44.304712"]] Admin::State Exists (0.2ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1  (2.3ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 28ms (ActiveRecord: 9.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 18:34:44 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.2ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (137.1ms)  (1.4ms) SELECT COUNT(*) FROM "states"  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.2ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (13.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (286.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 716ms (Views: 692.0ms | ActiveRecord: 9.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:46 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:47 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:48 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:50 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:51 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 18:34:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:34:51 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407522887923" for 10.0.2.2 at 2014-08-08 18:34:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407522887923"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.6ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (4, 1, 3, 2) Completed 200 OK in 266ms (Views: 255.7ms | ActiveRecord: 7.1ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:34:57 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.7ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (54.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (220.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (254.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (288.6ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 658ms (Views: 641.8ms | ActiveRecord: 11.8ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:34:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:00 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:01 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:03 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:35:04 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:35:04 +0000 Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-08 18:35:08 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PEgDyfZl//Ub0gCfycPW+pWEtSt4T/QBMYKfCxp8UkA=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "city_ids"=>["", "3"]}, "carnival-options-select-city"=>"-1", "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (5.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-city, commit, id  (0.1ms) begin transaction Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] SQL (1.9ms) UPDATE "cities" SET "state_id" = NULL WHERE "cities"."state_id" = ? AND "cities"."id" IN (8) [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1  (2.6ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 36ms (ActiveRecord: 13.4ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-08 18:35:08 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (141.6ms)  (1.1ms) SELECT COUNT(*) FROM "states"  (1.5ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR')  (1.4ms) SELECT COUNT(*) FROM "states" INNER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (12.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (294.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (57.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 691ms (Views: 678.4ms | ActiveRecord: 9.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:09 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:10 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:10 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:10 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:10 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:11 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:11 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:11 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:12 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:12 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:12 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:12 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:13 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:13 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:13 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:14 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:14 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:15 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:15 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:15 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:16 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:35:16 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=true&bSortable_4=true&bSortable_5=true&bSortable_6=true&bSortable_7=false&_=1407522912451" for 10.0.2.2 at 2014-08-08 18:35:16 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"true", "bSortable_4"=>"true", "bSortable_5"=>"true", "bSortable_6"=>"true", "bSortable_7"=>"false", "_"=>"1407522912451"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" IN (1) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" IN (4, 1, 3, 2) Completed 200 OK in 206ms (Views: 196.2ms | ActiveRecord: 7.3ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:35:18 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (50.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (211.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (247.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (280.8ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 634ms (Views: 619.1ms | ActiveRecord: 10.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:19 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:35:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:22 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:22 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:24 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:35:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:35:25 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:35:25 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-08 18:44:52 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (9.6ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (47.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (216.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (250.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (295.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (54.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 681ms (Views: 664.4ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:53 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:54 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:54 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:44:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:44:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:44:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:44:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:44:56 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:45:14 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (119.3ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.4ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (47.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (181.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (812.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (864.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (906.6ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (55.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1248ms (Views: 1223.9ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:16 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:17 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:45:18 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:45:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:45:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:45:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:45:18 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 18:45:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 18:45:19 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 18:45:19 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 18:45:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 18:45:20 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:47:49 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (65.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.4ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.5ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (34.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (85.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (631.4ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (665.3ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (700.0ms) Completed 500 Internal Server Error in 866ms SyntaxError - /project/app/assets/javascripts/carnival/admin.js.erb:1: syntax error, unexpected '=', expecting ')' _erbout = ''; _erbout.concat(( //= require jquery ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:2: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require jquery_ujs ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:4: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require ckeditor/init ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:6: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:7: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:8: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:9: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:10: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: no . floating literal anymore; put 0 before dot ...arnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected tINTEGER, expecting '(' ...rnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:12: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/chosen.jquery ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:15: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jquery.fancybox ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:16: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/vizir_admin ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:17: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/batch_action ).to_s) ^ (in /project/app/assets/javascripts/carnival/admin.js.erb): /project/app/assets/javascripts/carnival/admin.js.erb:1:in `' tilt (1.4.1) lib/tilt/template.rb:264:in `compile_template_method' tilt (1.4.1) lib/tilt/template.rb:240:in `compiled_method' tilt (1.4.1) lib/tilt/template.rb:169:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.1) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.1) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.1) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.1) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.1) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.1) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.1) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.1) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.1) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.1) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.1) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:135:in `block in javascript_include_tag' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag' /project/app/views/layouts/carnival/admin.html.haml:7:in `__project_app_views_layouts_carnival_admin_html_haml__851530882_84429140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:71:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:68:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-623948358/variables" for 10.0.2.2 at 2014-08-08 18:47:50 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:49:07 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (4.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (106.3ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.2ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (34.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (93.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (654.2ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (689.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (726.9ms) Completed 500 Internal Server Error in 904ms SyntaxError - /project/app/assets/javascripts/carnival/admin.js.erb:1: syntax error, unexpected $undefined, expecting ')' _erbout = ''; _erbout.concat(( //\= require jquery ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:2: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require jquery_ujs ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:4: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require ckeditor/init ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:6: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:7: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:8: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:9: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:10: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: no . floating literal anymore; put 0 before dot ...arnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected tINTEGER, expecting '(' ...rnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:12: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/chosen.jquery ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:15: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jquery.fancybox ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:16: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/vizir_admin ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:17: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/batch_action ).to_s) ^ (in /project/app/assets/javascripts/carnival/admin.js.erb): /project/app/assets/javascripts/carnival/admin.js.erb:1:in `' tilt (1.4.1) lib/tilt/template.rb:264:in `compile_template_method' tilt (1.4.1) lib/tilt/template.rb:240:in `compiled_method' tilt (1.4.1) lib/tilt/template.rb:169:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.1) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.1) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.1) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.1) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.1) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.1) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.1) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.1) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.1) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.1) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.1) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:135:in `block in javascript_include_tag' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag' /project/app/views/layouts/carnival/admin.html.haml:7:in `__project_app_views_layouts_carnival_admin_html_haml__851530882_84429140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:71:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:68:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/93743590/variables" for 10.0.2.2 at 2014-08-08 18:49:08 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:49:20 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.2ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (80.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (134.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (644.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (678.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (712.6ms) Completed 500 Internal Server Error in 878ms SyntaxError - /project/app/assets/javascripts/carnival/admin.js.erb:1: syntax error, unexpected '=', expecting ')' _erbout = ''; _erbout.concat(( //= require 'jquery' ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:2: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require jquery_ujs ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:4: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require ckeditor/init ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:6: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:7: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:8: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:9: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:10: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: no . floating literal anymore; put 0 before dot ...arnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected tINTEGER, expecting '(' ...rnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:12: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/chosen.jquery ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:15: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jquery.fancybox ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:16: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/vizir_admin ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:17: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/batch_action ).to_s) ^ (in /project/app/assets/javascripts/carnival/admin.js.erb): /project/app/assets/javascripts/carnival/admin.js.erb:1:in `' tilt (1.4.1) lib/tilt/template.rb:264:in `compile_template_method' tilt (1.4.1) lib/tilt/template.rb:240:in `compiled_method' tilt (1.4.1) lib/tilt/template.rb:169:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.1) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.1) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.1) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.1) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.1) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.1) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.1) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.1) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.1) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.1) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.1) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:135:in `block in javascript_include_tag' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag' /project/app/views/layouts/carnival/admin.html.haml:7:in `__project_app_views_layouts_carnival_admin_html_haml__851530882_84429140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:71:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:68:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/90779460/variables" for 10.0.2.2 at 2014-08-08 18:49:22 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:49:40 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (61.3ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (33.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (84.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (634.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (669.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (703.3ms) Completed 500 Internal Server Error in 921ms SyntaxError - /project/app/assets/javascripts/carnival/admin.js.erb:2: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require jquery_ujs ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:4: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require ckeditor/init ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:6: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:7: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:8: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:9: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/no... ^ /project/app/assets/javascripts/carnival/admin.js.erb:10: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jq... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: no . floating literal anymore; put 0 before dot ...arnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:11: syntax error, unexpected tINTEGER, expecting '(' ...rnival/external/jquery-ui-1.9.1.custom.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:12: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/chosen.jquery ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:13: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/pe... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: no . floating literal anymore; put 0 before dot ...external/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:14: syntax error, unexpected tINTEGER, expecting '(' ...xternal/perfect-scrollbar-0.4.6.with-mousewheel.min ).to_s) ... ^ /project/app/assets/javascripts/carnival/admin.js.erb:15: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/external/jquery.fancybox ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:16: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/vizir_admin ).to_s) ^ /project/app/assets/javascripts/carnival/admin.js.erb:17: syntax error, unexpected '=', expecting ')' _erbout.concat(( //= require carnival/batch_action ).to_s) ^ (in /project/app/assets/javascripts/carnival/admin.js.erb): /project/app/assets/javascripts/carnival/admin.js.erb:2:in `' tilt (1.4.1) lib/tilt/template.rb:264:in `compile_template_method' tilt (1.4.1) lib/tilt/template.rb:240:in `compiled_method' tilt (1.4.1) lib/tilt/template.rb:169:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.1) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.1) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.1) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.1) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.1) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.1) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.1) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.1) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.1) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.1) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.1) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.1) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.1) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.1) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.1) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:135:in `block in javascript_include_tag' sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag' /project/app/views/layouts/carnival/admin.html.haml:7:in `__project_app_views_layouts_carnival_admin_html_haml__851530882_84429140' actionview (4.1.4) lib/action_view/template.rb:145:in `block in render' activesupport (4.1.4) lib/active_support/notifications.rb:161:in `instrument' actionview (4.1.4) lib/action_view/template.rb:339:in `instrument' actionview (4.1.4) lib/action_view/template.rb:143:in `render' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:53:in `render_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.11.0) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:71:in `block (2 levels) in new' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:503:in `response' actionpack (4.1.4) lib/action_controller/metal/mime_responds.rb:399:in `respond_with' inherited_resources (1.5.0) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:68:in `new' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' bullet (4.10.0) lib/bullet/rack.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 `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' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254: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.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) 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.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144: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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/84132970/variables" for 10.0.2.2 at 2014-08-08 18:49:41 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:50:15 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (4.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (76.5ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.4ms) Admin::City Load (3.1ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.9ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (39.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (111.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (765.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (804.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (844.3ms) Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1293ms (Views: 1274.0ms | ActiveRecord: 15.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:17 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:50:20 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:50:20 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:50:20 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 18:50:20 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 18:50:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 18:50:21 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 18:50:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 18:50:21 +0000 Started GET "/admin/people/new" for 10.0.2.2 at 2014-08-08 18:51:42 +0000 Processing by Admin::PeopleController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (65.2ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (33.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (86.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (600.7ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (639.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (673.9ms) Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1213ms (Views: 1200.1ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:43 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:43 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:44 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-08 18:51:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:46 +0000 Started GET "/assets/ckeditor/init.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:46 +0000 Started GET "/assets/ckeditor/ckeditor.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:49 +0000 Started GET "/assets/carnival/batch_action.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-08 18:51:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-08 18:51:50 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-08 18:51:50 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-08 18:51:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-08 18:51:50 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-08 18:51:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-08 18:51:51 +0000 Started GET "/assets/ckeditor/config.js?t=E5OD" for 10.0.2.2 at 2014-08-08 18:51:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-08 18:51:51 +0000 Started GET "/assets/carnival/overlay.png" for 10.0.2.2 at 2014-08-08 18:51:51 +0000 Started GET "/assets/ckeditor/skins/moono/editor.css?t=E5OD" for 10.0.2.2 at 2014-08-08 18:51:52 +0000 Started GET "/assets/ckeditor/lang/en.js?t=E5OD" for 10.0.2.2 at 2014-08-08 18:51:52 +0000 Started GET "/assets/ckeditor/styles.js?t=E5OD" for 10.0.2.2 at 2014-08-08 18:51:52 +0000 Started GET "/assets/ckeditor/skins/moono/icons.png" for 10.0.2.2 at 2014-08-08 18:51:53 +0000 Started GET "/assets/ckeditor/contents.css?t=E5OD" for 10.0.2.2 at 2014-08-08 18:51:53 +0000 Started GET "/" for 10.0.2.2 at 2014-08-27 17:11:49 +0000 ActiveRecord::SchemaMigration Load (3.0ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.0.4/lib/rails/templates/rails/welcome/index.html.erb (16.1ms) Completed 200 OK in 81ms (Views: 80.2ms | ActiveRecord: 0.0ms) Started GET "/admin" for 10.0.2.2 at 2014-08-27 17:11:53 +0000 Processing by Carnival::AdminUsersController#index as HTML Completed 401 Unauthorized in 68ms Started GET "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-27 17:11:54 +0000 Processing by Carnival::SessionsController#new as HTML Rendered /project/app/views/admin_users/shared/_links.html.haml (3.6ms) Rendered /project/app/views/admin_users/sessions/new.html.haml within layouts/carnival/admin (139.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.8ms) Completed 200 OK in 2308ms (Views: 2282.0ms | ActiveRecord: 1.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:56 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:56 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:57 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:57 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:57 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:58 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:58 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:58 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:58 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:11:58 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:11:59 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:11:59 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:11:59 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:11:59 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:00 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:00 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:00 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:00 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:01 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:01 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:01 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:01 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:12:02 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-27 17:12:02 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (42.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (117.9ms) Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-27 17:12:02 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 17:12:02 +0000 Started POST "/admin/sessions/sign_in" for 10.0.2.2 at 2014-08-27 17:30:32 +0000 Processing by Carnival::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"pL8SDsPs4q7sNEvAXWhFBL3e5ElZyOReZbYcPiB0ZDs=", "admin_user"=>{"email"=>"admin@vizir.com.br", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Fazer login"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@vizir.com.br' ORDER BY "admin_users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (38.9ms) UPDATE "admin_users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "admin_users"."id" = 1 [["last_sign_in_at", Fri, 08 Aug 2014 13:44:42 UTC +00:00], ["current_sign_in_at", Wed, 27 Aug 2014 17:30:32 UTC +00:00], ["sign_in_count", 9], ["updated_at", Wed, 27 Aug 2014 17:30:32 UTC +00:00]]  (2.2ms) commit transaction Redirected to http://localhost:3021/admin Completed 302 Found in 215ms (ActiveRecord: 47.9ms) Started GET "/admin" for 10.0.2.2 at 2014-08-27 17:30:32 +0000 Processing by Carnival::AdminUsersController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (198.7ms) Rendered /project/app/views/carnival/shared/_scope.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (12.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (602.2ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (130.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 2002ms (Views: 1054.5ms | ActiveRecord: 7.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:36 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:40 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 17:30:40 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 17:30:41 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-27 17:30:41 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-27 17:30:41 +0000 Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-27 17:30:41 +0000 Started GET "/admin/admin_users.json?sEcho=1&iColumns=6&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&iSortCol_0=0&sSortDir_0=asc&iSortingCols=1&bSortable_0=true&bSortable_1=false&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&_=1409160637518" for 10.0.2.2 at 2014-08-27 17:30:42 +0000 Processing by Carnival::AdminUsersController#index as JSON Parameters: {"sEcho"=>"1", "iColumns"=>"6", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "iSortCol_0"=>"0", "sSortDir_0"=>"asc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"false", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "_"=>"1409160637518"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.8ms) SELECT COUNT(*) FROM "admin_users" Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" ORDER BY admin_users.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (32.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (138.0ms) Completed 200 OK in 415ms (Views: 406.3ms | ActiveRecord: 5.1ms) Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-27 17:30:42 +0000 Started GET "/assets/carnival/sort_asc.png" for 10.0.2.2 at 2014-08-27 17:30:43 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-08-27 17:30:45 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (32.0ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (163.8ms)  (1.5ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.6ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (44.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (336.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (38.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 725ms (Views: 681.8ms | ActiveRecord: 13.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:47 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:51 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:52 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-27 17:30:52 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-27 17:30:52 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-27 17:30:52 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409160649304" for 10.0.2.2 at 2014-08-27 17:30:53 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409160649304"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.7ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (54.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (23.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (127.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (61.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.2ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (131.8ms) Completed 200 OK in 1742ms (Views: 1732.3ms | ActiveRecord: 5.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 17:30:57 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (66.9ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___271073362_90298880 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (13.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___673717200_84308300 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.0ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (130.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (343.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (609.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1011.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1047.2ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (40.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1412ms (Views: 1392.3ms | ActiveRecord: 15.1ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:30:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:31:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:31:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:31:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:31:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:31:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:31:03 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 17:31:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 17:31:04 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 17:31:04 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 17:32:00 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.6ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___271073362_90298880 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___673717200_84308300 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (120.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (330.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (542.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (579.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (615.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1073ms (Views: 953.0ms | ActiveRecord: 23.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:02 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:03 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:03 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:03 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:04 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:05 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:05 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:05 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:05 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:06 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:06 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:06 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:07 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:07 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 17:32:16 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.5ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."country_id" = 1 DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___271073362_90298880 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:9) Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___673717200_84308300 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] CACHE (0.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (183.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (338.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (373.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (443.0ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 788ms (Views: 771.4ms | ActiveRecord: 12.3ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:18 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:18 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:18 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:19 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:20 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:23 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 17:32:43 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (53.6ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (118.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (377.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (412.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (447.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 893ms (Views: 779.9ms | ActiveRecord: 21.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:32:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:32:49 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 17:33:24 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.8ms) Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (128.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (341.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (380.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (422.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 945ms (Views: 769.5ms | ActiveRecord: 21.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 17:33:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 17:33:31 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 17:36:27 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (6.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (3804406.3ms) Admin::City Load (3.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (39.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (201.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (3804774.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (3804814.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (3804852.0ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (50.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 3805508ms (Views: 3805339.1ms | ActiveRecord: 32.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 18:49:16 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (3.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.3ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (3.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (11386.7ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.1ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (41.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (94.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (11683.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (11728.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (11771.7ms) Completed 500 Internal Server Error in 12132ms Sprockets::FileNotFound - couldn't find file 'select2' (in /project/app/assets/stylesheets/carnival/admin.css:7): sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag' /project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___236762183_94783210' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__895033491__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__513144551__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/94727150/variables" for 10.0.2.2 at 2014-08-27 18:49:28 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 18:50:53 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.9ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (4.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (10575.3ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (2.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (37.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (87.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (10838.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (10878.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (10917.8ms) Completed 500 Internal Server Error in 11220ms Sprockets::FileNotFound - couldn't find file 'select2' (in /project/app/assets/stylesheets/carnival/admin.css:3): sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag' /project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___236762183_94783210' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__895033491__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__513144551__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/85144770/variables" for 10.0.2.2 at 2014-08-27 18:51:05 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 18:51:31 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (83.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (14.4ms) Admin::Country Load (2.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (3.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (6384.7ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (38.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (89.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (6720.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___419147090__619125998 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (6761.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (6800.1ms) Completed 500 Internal Server Error in 7029ms Sprockets::FileNotFound - couldn't find file '/select2' (in /project/app/assets/stylesheets/carnival/admin.css:3): sprockets (2.12.0) lib/sprockets/context.rb:87:in `resolve' sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag' /project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml___236762183_94783210' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__895033491__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__513144551__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-619865098/variables" for 10.0.2.2 at 2014-08-27 18:51:38 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 18:52:33 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (9.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (109.5ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (156.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (455.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__631603895_92062670 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (808.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (930.0ms) Completed 500 Internal Server Error in 1321ms LoadError - cannot load such file -- sass (in /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/select2-rails-3.5.9.1/vendor/assets/stylesheets/select2.scss): activesupport (4.0.4) lib/active_support/dependencies.rb:229:in `block in require' activesupport (4.0.4) lib/active_support/dependencies.rb:214:in `load_dependency' activesupport (4.0.4) lib/active_support/dependencies.rb:229:in `require' tilt (1.4.1) lib/tilt/template.rb:144:in `require_template_library' sprockets (2.12.0) lib/sprockets/sass_template.rb:20:in `initialize_engine' tilt (1.4.1) lib/tilt/template.rb:56:in `initialize' sprockets (2.12.0) lib/sprockets/context.rb:196:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag' /project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml__303221206_98326810' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__325394666__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__217516373__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-618671258/variables" for 10.0.2.2 at 2014-08-27 18:52:35 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 18:53:54 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Admin::Country Load (9.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (111.3ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (157.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (479.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___367466746__616190088 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (833.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (919.6ms) Completed 500 Internal Server Error in 1294ms LoadError - cannot load such file -- sass (in /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/select2-rails-3.5.9.1/vendor/assets/stylesheets/select2.scss): activesupport (4.0.4) lib/active_support/dependencies.rb:229:in `block in require' activesupport (4.0.4) lib/active_support/dependencies.rb:214:in `load_dependency' activesupport (4.0.4) lib/active_support/dependencies.rb:229:in `require' tilt (1.4.1) lib/tilt/template.rb:144:in `require_template_library' sprockets (2.12.0) lib/sprockets/sass_template.rb:20:in `initialize_engine' tilt (1.4.1) lib/tilt/template.rb:56:in `initialize' sprockets (2.12.0) lib/sprockets/context.rb:196:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag' /project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml__743441227_85083350' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__522572650__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__426584020__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-619575398/variables" for 10.0.2.2 at 2014-08-27 18:53:56 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:02:15 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (6.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.3ms) Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (51.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (231.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___367466746__616190088 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (271.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (305.3ms) Completed 500 Internal Server Error in 535ms LoadError - cannot load such file -- sass (in /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/select2-rails-3.5.9.1/vendor/assets/stylesheets/select2.scss): activesupport (4.0.4) lib/active_support/dependencies.rb:229:in `block in require' activesupport (4.0.4) lib/active_support/dependencies.rb:214:in `load_dependency' activesupport (4.0.4) lib/active_support/dependencies.rb:229:in `require' tilt (1.4.1) lib/tilt/template.rb:144:in `require_template_library' sprockets (2.12.0) lib/sprockets/sass_template.rb:20:in `initialize_engine' tilt (1.4.1) lib/tilt/template.rb:56:in `initialize' sprockets (2.12.0) lib/sprockets/context.rb:196:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag' /project/app/views/layouts/carnival/admin.html.haml:6:in `__project_app_views_layouts_carnival_admin_html_haml__743441227_85083350' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__522572650__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__426584020__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-621973958/variables" for 10.0.2.2 at 2014-08-27 19:02:16 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:02:28 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Admin::Country Load (10.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (117.1ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (2.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (138.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (508.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (876.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (955.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (37.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 2460ms (Views: 2257.7ms | ActiveRecord: 28.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:32 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:32 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:33 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:02:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:35 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:36 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:02:38 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:03:25 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.0ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (45.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (239.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (278.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (312.2ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (39.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 906ms (Views: 891.3ms | ActiveRecord: 10.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:27 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:29 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:30 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:03:32 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 19:03:32 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 19:03:34 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:03:58 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (45.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (207.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (245.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (319.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (40.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 945ms (Views: 929.4ms | ActiveRecord: 11.3ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:03:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:00 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:00 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:00 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:01 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:01 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:04:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:02 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:02 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:03 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:04:05 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:07:12 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (53.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.9ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (14.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (143.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (398.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (439.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (477.5ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1222ms (Views: 1097.6ms | ActiveRecord: 22.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:14 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:14 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:15 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:15 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:15 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:15 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:16 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:16 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:16 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:16 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:17 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:17 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:17 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:17 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:17 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:18 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:18 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:18 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:19 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:19 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:19 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:07:43 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.9ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (119.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (324.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (359.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (395.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 880ms (Views: 728.1ms | ActiveRecord: 21.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:45 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:45 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:07:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:47 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:07:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:07:50 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:07:51 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:07:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:07:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:07:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:07:52 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:08:37 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.0ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (125.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (337.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (373.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (413.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1005ms (Views: 827.7ms | ActiveRecord: 22.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:39 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:40 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:40 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:40 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:41 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:41 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:08:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:42 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:43 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:43 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:44 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:08:45 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:08:45 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:08:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:08:46 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:08:46 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:08:46 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:08:46 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:11:29 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (49.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (219.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (260.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (296.6ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 640ms (Views: 623.6ms | ActiveRecord: 11.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:31 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:31 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:31 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:32 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:32 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:32 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:11:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:33 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:33 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:34 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:34 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:34 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:35 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:11:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:11:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:11:36 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:11:37 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:11:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:11:37 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:11:37 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:12:12 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.2ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (202.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (237.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (272.2ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 613ms (Views: 596.6ms | ActiveRecord: 12.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:13 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:13 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:12:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:15 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:17 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:18 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:12:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:12:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:12:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:12:19 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:12:19 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:12:19 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:12:19 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:14:06 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.1ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (118.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (326.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (362.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (396.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (36.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 890ms (Views: 737.7ms | ActiveRecord: 22.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:08 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:08 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:08 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:09 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:09 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:09 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:09 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:09 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:10 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:10 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:10 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:14:10 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:10 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:11 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:11 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:11 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:11 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:11 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:12 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:12 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:12 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:13 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:13 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:13 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:14:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:14:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:14:14 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:14:14 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:14:14 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:14:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:14:15 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:19:45 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.7ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (11.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (53.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (241.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (280.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (314.0ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 690ms (Views: 674.3ms | ActiveRecord: 12.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:47 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:47 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:19:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:48 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:49 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:49 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:19:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:19:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:19:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:19:52 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:19:52 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:19:52 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:19:53 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:23:36 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.6ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (121.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (330.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (366.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (400.9ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 894ms (Views: 736.7ms | ActiveRecord: 20.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:38 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:39 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:23:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:40 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:41 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:42 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:43 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:23:43 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:23:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:23:44 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:23:44 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:23:44 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:23:44 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:23:45 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:24:59 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.7ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.1ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (199.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (234.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (267.8ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 894ms (Views: 878.2ms | ActiveRecord: 10.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:00 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:00 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:01 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:01 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:01 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:01 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:01 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:02 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:02 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:02 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:02 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:02 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:03 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:03 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:03 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:03 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:03 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:04 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:04 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:04 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:04 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:05 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:05 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:05 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:06 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:06 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:25:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:25:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:25:07 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:25:07 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:25:07 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:25:07 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:25:23 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.2ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (118.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (350.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (385.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (420.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 907ms (Views: 751.7ms | ActiveRecord: 22.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:24 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:24 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:25 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:26 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:26 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:26 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:25:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:27 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:25:30 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:25:30 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:25:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:25:31 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:25:31 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:25:31 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:25:31 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:50:36 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (158.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (193.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (231.4ms) Completed 500 Internal Server Error in 470ms SyntaxError - /project/app/inputs/admin_relationship_select_remote_input.rb:16: syntax error, unexpected keyword_end, expecting end-of-input: /project/app/inputs/admin_relationship_select_remote_input.rb:16:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' simple_form (3.0.1) lib/simple_form/form_builder.rb:580:in `attempt_mapping' simple_form (3.0.1) lib/simple_form/form_builder.rb:550:in `find_mapping' simple_form (3.0.1) lib/simple_form/form_builder.rb:482:in `find_input' simple_form (3.0.1) lib/simple_form/form_builder.rb:111:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___470398274_91947840' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___411253489_92153240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__216058652__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97845030/variables" for 10.0.2.2 at 2014-08-27 19:50:37 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:50:51 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (84.2ms) Admin::City Load (2.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (133.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (382.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (421.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (459.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (44.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1214ms (Views: 1086.9ms | ActiveRecord: 21.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:53 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:53 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:54 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:50:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:56 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:50:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:50:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:50:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:50:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:51:00 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:51:00 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:51:48 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.7ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (160.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (368.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (405.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (438.7ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 916ms (Views: 800.3ms | ActiveRecord: 20.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:50 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:51 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:51 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:51 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:51:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:53 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:53 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:53 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:54 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:54 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:51:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:51:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:51:56 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:51:57 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:51:57 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:51:57 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:52:51 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:53:37 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.1ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (51.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (267.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (301.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (334.9ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 938ms (Views: 922.8ms | ActiveRecord: 10.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:38 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:39 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:39 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:53:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:41 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:53:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:53:45 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:53:45 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:53:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:53:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:53:46 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:53:46 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 19:53:46 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:59:30 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (216.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (251.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (285.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 895ms (Views: 881.9ms | ActiveRecord: 9.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:32 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:33 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:34 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:35 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:59:37 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:59:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:59:37 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:59:38 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:59:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:59:38 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 19:59:47 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (212.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (259.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (301.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 712ms (Views: 696.6ms | ActiveRecord: 9.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:48 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:48 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:48 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:49 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:49 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:49 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:49 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:50 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:50 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:50 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 19:59:50 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:51 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:51 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:51 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:51 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:52 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:52 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:52 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:52 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:53 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:53 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:53 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 19:59:54 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 19:59:54 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 19:59:54 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 19:59:54 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 19:59:55 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 19:59:55 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 19:59:55 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:02:27 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.3ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (119.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (322.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (358.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (392.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (46.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 871ms (Views: 760.5ms | ActiveRecord: 19.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:28 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:29 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:02:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:31 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:02:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:02:34 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:02:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:02:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:02:35 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:02:35 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:02:35 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:05:45 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.1ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (168.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (205.2ms) Completed 500 Internal Server Error in 395ms NotImplementedError - NotImplementedError: simple_form (3.0.1) lib/simple_form/inputs/base.rb:83:in `input' /project/app/inputs/admin_relationship_select_remote_input.rb:3:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___470398274_91947840' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___411253489_92153240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__216058652__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/98206570/variables" for 10.0.2.2 at 2014-08-27 20:05:46 +0000 Started POST "/__better_errors/98206570/eval" for 10.0.2.2 at 2014-08-27 20:06:06 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:06:22 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (133.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (171.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (203.3ms) Completed 500 Internal Server Error in 294ms NotImplementedError - NotImplementedError: simple_form (3.0.1) lib/simple_form/inputs/base.rb:83:in `input' /project/app/inputs/admin_relationship_select_remote_input.rb:3:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___470398274_91947840' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___411253489_92153240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__216058652__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/91980430/variables" for 10.0.2.2 at 2014-08-27 20:06:23 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:06:30 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (138.5ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (170.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (210.1ms) Completed 500 Internal Server Error in 310ms NotImplementedError - NotImplementedError: simple_form (3.0.1) lib/simple_form/inputs/base.rb:83:in `input' /project/app/inputs/admin_relationship_select_remote_input.rb:3:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___470398274_91947840' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___411253489_92153240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__216058652__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97670130/variables" for 10.0.2.2 at 2014-08-27 20:06:31 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:06:41 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (151.0ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (185.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (222.2ms) Completed 500 Internal Server Error in 415ms NotImplementedError - NotImplementedError: simple_form (3.0.1) lib/simple_form/inputs/base.rb:83:in `input' /project/app/inputs/admin_relationship_select_remote_input.rb:3:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___470398274_91947840' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___411253489_92153240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__216058652__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/98393140/variables" for 10.0.2.2 at 2014-08-27 20:06:43 +0000 Started POST "/__better_errors/98393140/eval" for 10.0.2.2 at 2014-08-27 20:07:11 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:08:17 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (4.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (125.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (159.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (195.0ms) Completed 500 Internal Server Error in 295ms NotImplementedError - NotImplementedError: simple_form (3.0.1) lib/simple_form/inputs/base.rb:83:in `input' /project/app/inputs/admin_relationship_select_remote_input.rb:3:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___470398274_91947840' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__288207047_86683830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___183415944_98051240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___411253489_92153240' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__216058652__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97972300/variables" for 10.0.2.2 at 2014-08-27 20:08:17 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:08:26 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.0ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (2.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (125.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (335.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (411.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (451.1ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 925ms (Views: 806.6ms | ActiveRecord: 21.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:28 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:28 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:28 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:29 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:29 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:30 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:30 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:08:30 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:31 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:31 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:31 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:32 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:32 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:08:33 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:08:34 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:08:34 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:08:34 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:08:34 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:08:35 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:08:35 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:08:35 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:08:38 +0000 Started GET "/admin/states/4/countries/remote_select?_=1409170111216" for 10.0.2.2 at 2014-08-27 20:08:39 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (65.5ms) Started GET "/admin/states/4/countries/remote_select?_=1409170111217" for 10.0.2.2 at 2014-08-27 20:08:39 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (119.1ms) Started GET "/admin/states/4/countries/remote_select?_=1409170111218" for 10.0.2.2 at 2014-08-27 20:08:45 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (56.3ms) Started GET "/admin/states/4/countries/remote_select?_=1409170111219" for 10.0.2.2 at 2014-08-27 20:08:47 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (55.6ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:11:45 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.5ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (126.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (357.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (395.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (431.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1175ms (Views: 1052.1ms | ActiveRecord: 22.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:47 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:11:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:49 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:11:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:11:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:11:53 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:11:53 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:11:54 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:11:54 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:11:54 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:11:54 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:11:55 +0000 Started GET "/admin/states/4/countries/remote_select?q=s&_=1409170309845" for 10.0.2.2 at 2014-08-27 20:11:55 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (63.7ms) Started GET "/admin/states/4/countries/remote_select?q=sasd&_=1409170309846" for 10.0.2.2 at 2014-08-27 20:12:04 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (64.8ms) Started GET "/admin/states/4/countries/remote_select?q=sasdasd&_=1409170309847" for 10.0.2.2 at 2014-08-27 20:12:04 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/countries/remote_select"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (64.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:15:36 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (43.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (199.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (236.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (270.4ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 867ms (Views: 853.8ms | ActiveRecord: 9.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:38 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:38 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:39 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:15:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:41 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:43 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:43 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:15:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:15:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:15:45 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:15:45 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:15:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:15:45 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:15:46 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:15:46 +0000 Started GET "/admin/countries/remote_select" for 10.0.2.2 at 2014-08-27 20:15:48 +0000 Processing by Admin::CountriesController#show as HTML Parameters: {"id"=>"remote_select"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", "remote_select"]] Completed 404 Not Found in 18ms ActiveRecord::RecordNotFound - Couldn't find Admin::Country with id=remote_select: activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:199:in `raise_record_not_found_exception!' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:285:in `find_one' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:269:in `find_with_ids' activerecord (4.0.4) lib/active_record/relation/finder_methods.rb:36:in `find' activerecord-deprecated_finders (1.0.3) lib/active_record/deprecated_finders/relation.rb:122:in `find' activerecord (4.0.4) lib/active_record/querying.rb:3:in `find' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:51:in `resource' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' /project/app/controllers/carnival/base_admin_controller.rb:43:in `show' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__478813871__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/97938190/variables" for 10.0.2.2 at 2014-08-27 20:15:48 +0000 Started GET "/admin/remote_select/countries" for 10.0.2.2 at 2014-08-27 20:16:26 +0000 Processing by Admin::CountriesController#remote_select as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 133ms ActionView::MissingTemplate - Missing template admin/countries/remote_select, carnival/base_admin/remote_select, inherited_resources/base/remote_select, application/remote_select with {:locale=>[:"pt-BR"], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in: * "/project/test/dummy/app/views" * "/project/app/views" * "/home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/devise-3.2.4/app/views" : actionpack (4.0.4) lib/action_view/path_set.rb:46:in `find' actionpack (4.0.4) lib/action_view/lookup_context.rb:122:in `find' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:35:in `determine_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__478813871__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92248280/variables" for 10.0.2.2 at 2014-08-27 20:16:27 +0000 Started GET "/admin/remote_select/countries" for 10.0.2.2 at 2014-08-27 20:22:24 +0000 Processing by Admin::CountriesController#remote_select as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 38ms (Views: 0.2ms | ActiveRecord: 5.2ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:22:56 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.3ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (10.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (163.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (369.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (415.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (449.9ms) Carnival::AdminUserNotification Load (2.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1154ms (Views: 1051.1ms | ActiveRecord: 20.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:58 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:59 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:22:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:01 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:23:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:23:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:23:04 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:23:04 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:23:05 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:23:05 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:23:05 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:23:09 +0000 Started GET "/admin/states/4/admin/remote_select/countries?q=a&_=1409170980924" for 10.0.2.2 at 2014-08-27 20:23:09 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/admin/remote_select/countries"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (64.0ms) Started GET "/admin/states/4/admin/remote_select/countries?q=as&_=1409170980925" for 10.0.2.2 at 2014-08-27 20:23:10 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/admin/remote_select/countries"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (51.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (108.4ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:23:42 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (50.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (209.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (245.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (280.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (13.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 955ms (Views: 941.6ms | ActiveRecord: 9.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:43 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:43 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:23:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:46 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:23:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:23:49 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:23:49 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:23:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:23:50 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:23:50 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:23:50 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:23:51 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:23:53 +0000 Started GET "/admin/remote_select/countries?q=a&_=1409171026284" for 10.0.2.2 at 2014-08-27 20:23:54 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"a", "_"=>"1409171026284"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.7ms) Started GET "/admin/remote_select/countries" for 10.0.2.2 at 2014-08-27 20:24:48 +0000 SyntaxError - /project/test/dummy/app/controllers/admin/countries_controller.rb:10: syntax error, unexpected ']', expecting '}' render :json => [{id: 1, text: "first"] ^: app/controllers/admin/countries_controller.rb:10:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/dependencies.rb:535:in `get' activesupport (4.0.4) lib/active_support/dependencies.rb:566:in `constantize' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:66:in `controller' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:44:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-620779908/variables" for 10.0.2.2 at 2014-08-27 20:24:49 +0000 Started GET "/admin/remote_select/countries" for 10.0.2.2 at 2014-08-27 20:24:57 +0000 Processing by Admin::CountriesController#remote_select as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 8.1ms) Started GET "/admin/remote_select/countries?q=as&_=1409171026285" for 10.0.2.2 at 2014-08-27 20:25:00 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"as", "_"=>"1409171026285"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 1.5ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:25:11 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.1ms) Admin::City Load (2.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (144.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (370.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (411.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (448.9ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 939ms (Views: 853.1ms | ActiveRecord: 19.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:13 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:25:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:15 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:25:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:25:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:25:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:25:18 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:25:19 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:25:19 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:25:19 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:25:19 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:25:21 +0000 Started GET "/admin/remote_select/countries?q=a&_=1409171115375" for 10.0.2.2 at 2014-08-27 20:25:21 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"a", "_"=>"1409171115375"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.3ms) Started GET "/admin/remote_select/countries?q=as&_=1409171115376" for 10.0.2.2 at 2014-08-27 20:25:21 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"as", "_"=>"1409171115376"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 1.7ms) Started GET "/admin/remote_select/countries?q=ass&_=1409171115377" for 10.0.2.2 at 2014-08-27 20:25:38 +0000 SyntaxError - /project/test/dummy/app/controllers/admin/countries_controller.rb:10: syntax error, unexpected tLABEL render :json => data: [{id: 1, text: "first"}] ^: app/controllers/admin/countries_controller.rb:10:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/dependencies.rb:535:in `get' activesupport (4.0.4) lib/active_support/dependencies.rb:566:in `constantize' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:66:in `controller' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:44:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__455881275__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/remote_select/countries?q=asss&_=1409171115378" for 10.0.2.2 at 2014-08-27 20:25:51 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"asss", "_"=>"1409171115378"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 41ms (Views: 0.2ms | ActiveRecord: 5.3ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:26:23 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (78.2ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (152.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (395.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (434.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (472.1ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (34.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (45.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1207ms (Views: 1124.1ms | ActiveRecord: 18.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:25 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:25 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:25 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:26 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:27 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:27 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:27 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:28 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:28 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:28 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:28 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:29 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:29 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:30 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:30 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:26:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:26:31 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:26:31 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:26:32 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:26:32 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:26:32 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:26:32 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:26:34 +0000 Started GET "/admin/remote_select/countries?q=s&_=1409171188021" for 10.0.2.2 at 2014-08-27 20:26:34 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"s", "_"=>"1409171188021"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.6ms) Started GET "/admin/remote_select/countries?q=sw&_=1409171188022" for 10.0.2.2 at 2014-08-27 20:26:37 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"sw", "_"=>"1409171188022"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 2.0ms) Started GET "/admin/remote_select/countries?q=sww&_=1409171188023" for 10.0.2.2 at 2014-08-27 20:26:39 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"sww", "_"=>"1409171188023"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 2.0ms) Started GET "/admin/remote_select/countries?q=swww&_=1409171188024" for 10.0.2.2 at 2014-08-27 20:26:39 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"swww", "_"=>"1409171188024"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 1.6ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:26:50 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (197.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___183415944_98051240 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (234.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (271.4ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 959ms (Views: 946.2ms | ActiveRecord: 9.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:51 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:26:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:54 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:26:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:26:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:26:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:26:58 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:26:58 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:26:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:26:58 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:26:58 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:26:59 +0000 Started GET "/admin/remote_select/countries?q=s&_=1409171213994" for 10.0.2.2 at 2014-08-27 20:27:00 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"s", "_"=>"1409171213994"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.5ms) Started GET "/admin/remote_select/countries?q=s&_=1409171213995" for 10.0.2.2 at 2014-08-27 20:27:04 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"s", "_"=>"1409171213995"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 1.5ms) Started GET "/admin/remote_select/countries?q=sd&_=1409171213996" for 10.0.2.2 at 2014-08-27 20:27:04 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"sd", "_"=>"1409171213996"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 1.9ms) Started GET "/admin/remote_select/countries?q=sda&_=1409171213997" for 10.0.2.2 at 2014-08-27 20:27:05 +0000 Processing by Admin::CountriesController#remote_select as JSON Parameters: {"q"=>"sda", "_"=>"1409171213997"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 1.3ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:30:44 +0000 ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (14.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (127.0ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (134.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (456.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__322480365_93254480 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (877.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (974.1ms) Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (47.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 2264ms (Views: 2055.0ms | ActiveRecord: 33.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:47 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:30:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:50 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:51 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:53 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:30:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:30:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:30:54 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:30:54 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:30:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:30:54 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:30:54 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:30:55 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:30:56 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409171450137" for 10.0.2.2 at 2014-08-27 20:30:56 +0000 ActionController::RoutingError (No route matches [GET] "/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (102.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:31:18 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (44.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (194.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__322480365_93254480 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (229.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (263.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (0.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 932ms (Views: 916.3ms | ActiveRecord: 9.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:19 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:22 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:31:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:31:25 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:31:26 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:31:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:31:26 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:31:26 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:31:27 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:31:27 +0000 Started GET "/admin/states/4/carnival/load_select_options?q=a&model_name=country&_=1409171482234" for 10.0.2.2 at 2014-08-27 20:31:28 +0000 ActionController::RoutingError (No route matches [GET] "/admin/states/4/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (61.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:31:44 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.3ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (48.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (200.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__322480365_93254480 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (242.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (277.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 948ms (Views: 936.0ms | ActiveRecord: 8.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:45 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:46 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:31:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:48 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:31:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:31:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:31:51 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:31:52 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:31:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:31:52 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:31:52 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:31:52 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:31:53 +0000 Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409171508023" for 10.0.2.2 at 2014-08-27 20:31:54 +0000 ActionController::RoutingError (No route matches [GET] "/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (57.6ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:32:24 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.0ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (197.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__322480365_93254480 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (233.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (267.6ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (44.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 654ms (Views: 638.5ms | ActiveRecord: 10.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:25 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:26 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:26 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:32:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:28 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:30 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:32:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:32:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:32:32 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:32:32 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:32:32 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:32:32 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:32:33 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:32:33 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:32:33 +0000 Started GET "/carnival/load_select_options?q=x&model_name=country&_=1409171548629" for 10.0.2.2 at 2014-08-27 20:32:33 +0000 ActionController::RoutingError (No route matches [GET] "/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (62.4ms) Started GET "/carnival/load_select_options?q=xs&model_name=country&_=1409171548630" for 10.0.2.2 at 2014-08-27 20:33:06 +0000 ActionController::RoutingError (No route matches [GET] "/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (55.0ms) Started GET "/carnival/load_select_options" for 10.0.2.2 at 2014-08-27 20:33:17 +0000 ActionController::RoutingError (No route matches [GET] "/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (99.6ms) Started GET "/admin/carnival/load_select_options" for 10.0.2.2 at 2014-08-27 20:33:55 +0000 ActiveRecord::SchemaMigration Load (2.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/admin/carnival/load_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (16.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (101.8ms) Started GET "/admin/carnival-base/load_dependent_select_options" for 10.0.2.2 at 2014-08-27 20:34:09 +0000 ActionController::RoutingError (No route matches [GET] "/admin/carnival-base/load_dependent_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (32.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (87.4ms) Started GET "/carnival-base/load_dependent_select_options" for 10.0.2.2 at 2014-08-27 20:34:16 +0000 ActionController::RoutingError (No route matches [GET] "/carnival-base/load_dependent_select_options"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (58.0ms) Started GET "/admin/carnival/load_select_options" for 10.0.2.2 at 2014-08-27 20:35:57 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Carnival::BaseAdminController#load_select_options as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 84ms (Views: 0.3ms | ActiveRecord: 4.8ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:36:51 +0000 ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.1ms) Admin::Country Load (10.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (101.2ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (134.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (424.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (820.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (898.8ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (39.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.8ms) Completed 200 OK in 2009ms (Views: 1806.2ms | ActiveRecord: 30.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:54 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:54 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:55 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:55 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:55 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:55 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:56 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:56 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:56 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:56 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:57 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:36:57 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:57 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:57 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:58 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:58 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:58 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:58 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:59 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:59 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:59 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:36:59 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:00 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:00 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:00 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:00 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:01 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:37:01 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:37:01 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:37:02 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:37:02 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:37:02 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:37:02 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:37:02 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:37:04 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409171817926" for 10.0.2.2 at 2014-08-27 20:37:04 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "_"=>"1409171817926"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 1.4ms) Started GET "/carnival/load_select_options?q=as&model_name=country&_=1409171817927" for 10.0.2.2 at 2014-08-27 20:37:15 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"as", "model_name"=>"country", "_"=>"1409171817927"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 1.3ms) Started GET "/carnival/load_select_options?q=asd&model_name=country&_=1409171817928" for 10.0.2.2 at 2014-08-27 20:37:27 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"asd", "model_name"=>"country", "_"=>"1409171817928"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 1.6ms) Started GET "/carnival/load_select_options?q=asdas&model_name=country&_=1409171817929" for 10.0.2.2 at 2014-08-27 20:37:29 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"asdas", "model_name"=>"country", "_"=>"1409171817929"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.8ms) Started GET "/carnival/load_select_options?q=asdasd&model_name=country&_=1409171817930" for 10.0.2.2 at 2014-08-27 20:37:30 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"asdasd", "model_name"=>"country", "_"=>"1409171817930"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 1.6ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:37:45 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (4.8ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (46.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (207.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (244.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (280.3ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 606ms (Views: 593.7ms | ActiveRecord: 8.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:46 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:47 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:47 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:37:48 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:49 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:49 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:50 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:51 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:37:52 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:37:52 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:37:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:37:52 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:37:53 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:37:53 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:37:53 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:37:53 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:37:54 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409171869288" for 10.0.2.2 at 2014-08-27 20:37:54 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "_"=>"1409171869288"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.9ms) Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409171869289" for 10.0.2.2 at 2014-08-27 20:38:08 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"s", "model_name"=>"country", "_"=>"1409171869289"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 1.4ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:38:34 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.3ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (128.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (336.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (382.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (432.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (53.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 927ms (Views: 813.3ms | ActiveRecord: 22.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:36 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:36 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:36 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:36 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:37 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:37 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:37 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:38 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:38 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:38:38 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:38 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:38 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:39 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:39 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:39 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:39 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:40 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:40 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:41 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:38:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:38:42 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:38:42 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:38:42 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:38:43 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:38:43 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:38:43 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:38:43 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:38:47 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409171918784" for 10.0.2.2 at 2014-08-27 20:38:47 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "_"=>"1409171918784"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 2.4ms) Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-27 20:39:04 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YSxm0ZyghCUeUihm+ZIQTvM8AMEoWvb7Exy4DnXYmu0=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "city_ids"=>["", "3"]}, "carnival-options-select-city"=>"-1", "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Unpermitted parameters: utf8, _method, authenticity_token, carnival-options-select-city, commit, id  (0.1ms) begin transaction Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1  (0.1ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 37ms (ActiveRecord: 4.6ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-27 20:39:04 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (151.6ms)  (1.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (32.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.3ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (352.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (46.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 834ms (Views: 719.4ms | ActiveRecord: 10.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:06 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:06 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:06 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:07 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:07 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:08 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:09 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:09 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:11 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:11 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:11 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:39:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:39:12 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:39:12 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409171948754" for 10.0.2.2 at 2014-08-27 20:39:13 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409171948754"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (27.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (136.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (30.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (126.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (176.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (135.4ms) Completed 200 OK in 1768ms (Views: 1760.0ms | ActiveRecord: 5.6ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 20:39:52 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (24.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (45.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (208.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (249.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (292.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 624ms (Views: 610.3ms | ActiveRecord: 9.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:53 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:53 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:54 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:54 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 20:39:55 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:55 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:55 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:56 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 20:39:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 20:39:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 20:39:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 20:39:59 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 20:39:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 20:40:00 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 20:40:00 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 20:40:00 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 20:40:52 +0000 Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409171995882" for 10.0.2.2 at 2014-08-27 20:40:53 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"s", "model_name"=>"country", "_"=>"1409171995882"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:04:55 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.4ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (119.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (319.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (357.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (396.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (48.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 902ms (Views: 780.0ms | ActiveRecord: 22.4ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:57 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:57 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:58 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:58 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:58 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:59 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:59 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:04:59 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:00 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:00 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:00 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:00 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:01 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:01 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:01 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:02 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:02 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:02 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:03 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:05:03 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:05:03 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:05:03 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:05:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:05:04 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:05:04 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:05:04 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:05:05 +0000 Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409173500309" for 10.0.2.2 at 2014-08-27 21:05:06 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"s", "model_name"=>"country", "_"=>"1409173500309"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 1.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:05:17 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (42.7ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (162.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (365.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (400.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (434.9ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 897ms (Views: 782.4ms | ActiveRecord: 21.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:19 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:19 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:20 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:05:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:21 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:22 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:22 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:22 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:22 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:23 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:23 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:24 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:24 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:05:24 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:05:25 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:05:25 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:05:25 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:05:25 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:05:25 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:05:26 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:05:26 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:05:30 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409173522002" for 10.0.2.2 at 2014-08-27 21:05:31 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "_"=>"1409173522002"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.4ms) Started GET "/carnival/load_select_options?q=asd&model_name=country&_=1409173522003" for 10.0.2.2 at 2014-08-27 21:06:09 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"asd", "model_name"=>"country", "_"=>"1409173522003"} Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 2.5ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:10:50 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.0ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (121.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (379.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (415.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (452.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (33.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1184ms (Views: 1068.6ms | ActiveRecord: 23.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:52 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:53 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:53 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:53 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:54 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:54 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:10:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:55 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:10:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:10:58 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:10:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:10:58 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:10:58 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:10:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:10:59 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:10:59 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:11:06 +0000 Started GET "/carnival/load_select_options?q=d&model_name=country&_=1409173854938" for 10.0.2.2 at 2014-08-27 21:11:07 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"d", "model_name"=>"country", "_"=>"1409173854938"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 1.4ms) Started GET "/carnival/load_select_options?q=d&model_name=country&_=1409173854939" for 10.0.2.2 at 2014-08-27 21:11:15 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"d", "model_name"=>"country", "_"=>"1409173854939"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 1.4ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:12:37 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (42.8ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (188.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (394.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (431.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (468.1ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (72.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1214ms (Views: 1090.1ms | ActiveRecord: 21.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:38 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:39 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:39 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:40 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:12:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:41 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:12:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:12:44 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:12:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:12:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:12:45 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:12:45 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:12:45 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:12:46 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:12:49 +0000 Started GET "/carnival/load_select_options?q=3&model_name=country&_=1409173961512" for 10.0.2.2 at 2014-08-27 21:12:49 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"3", "model_name"=>"country", "_"=>"1409173961512"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 2.1ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:21:57 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.5ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (2.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (67.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (168.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (364.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (573.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (609.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (646.9ms) Carnival::AdminUserNotification Load (0.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (38.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (42.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1428ms (Views: 1271.6ms | ActiveRecord: 23.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:21:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:21:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:21:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:21:59 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:00 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:00 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:01 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:22:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:02 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:22:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:22:05 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:22:05 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:22:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:22:05 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:22:06 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:22:06 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:22:06 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:22:39 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.6ms) Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (6.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (119405.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (119508.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (119704.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (119914.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (120005.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (120041.8ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (48.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 120644ms (Views: 120482.8ms | ActiveRecord: 26.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:41 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:41 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:41 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:24:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:44 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:24:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:24:47 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:24:47 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:24:48 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:24:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:24:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:24:48 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:24:48 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:25:07 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.7ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (26561.7ms) Admin::City Load (2.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (37.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.8ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (208.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (552.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (27341.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (27389.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (27441.9ms) Carnival::AdminUserNotification Load (2.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (74.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (35.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.7ms) Completed 200 OK in 28261ms (Views: 28066.5ms | ActiveRecord: 35.2ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:38 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:38 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:39 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:39 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:39 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:40 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:40 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:40 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:40 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:25:40 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:41 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:41 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:41 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:41 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:42 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:42 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:42 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:43 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:43 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:43 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:44 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:25:44 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:25:44 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:25:45 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:25:45 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:25:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:25:45 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:25:45 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:25:46 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:25:58 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (91.6ms) Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (3.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (92.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.0ms) Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (205.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (581.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (873.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (915.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (967.3ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (57.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (90.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1759ms (Views: 1505.4ms | ActiveRecord: 33.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:02 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:02 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:03 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:03 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:03 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:04 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:04 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:04 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:26:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:05 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:08 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:26:08 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:26:09 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:26:09 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:26:09 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:26:09 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:26:10 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:26:10 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:26:10 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:26:13 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409174765482" for 10.0.2.2 at 2014-08-27 21:26:14 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "_"=>"1409174765482"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 1.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:28:29 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (31.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (13.1ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.7ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (40.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.4ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (130.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (364.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (574.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (613.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (653.1ms) Carnival::AdminUserNotification Load (2.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (26.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (26.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1594ms (Views: 1566.7ms | ActiveRecord: 16.9ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:32 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:32 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:32 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:33 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:28:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:34 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:37 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:28:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:28:38 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:28:38 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:28:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:28:39 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:28:39 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:28:39 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:28:39 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:28:41 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&_=1409174914676" for 10.0.2.2 at 2014-08-27 21:28:41 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "_"=>"1409174914676"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 1.6ms) Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409174914677" for 10.0.2.2 at 2014-08-27 21:28:47 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"s", "model_name"=>"country", "_"=>"1409174914677"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 2.3ms) Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409174914678" for 10.0.2.2 at 2014-08-27 21:28:52 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"s", "model_name"=>"country", "_"=>"1409174914678"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 1.8ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:30:27 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.4ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (207152.5ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (31.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.7ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (54.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (195.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (504.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (207878.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (207922.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (207976.6ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (51.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (83.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 208728ms (Views: 208493.3ms | ActiveRecord: 42.3ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:33:58 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (31.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (62.6ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (129.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (348.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (388.2ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (437.6ms) Completed 500 Internal Server Error in 682ms NoMethodError - undefined method `to_id' for #: activemodel (4.0.4) lib/active_model/attribute_methods.rb:439:in `method_missing' activerecord (4.0.4) lib/active_record/attribute_methods.rb:167:in `method_missing' /project/app/inputs/admin_relationship_select_remote_input.rb:7:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___670823849_88615160' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__1009861816_83560090' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__1009861816_83560090' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__1009861816_83560090' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___54466833_94967770' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___148706485_89068290' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__927436084__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__993268087__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/94604900/variables" for 10.0.2.2 at 2014-08-27 21:34:00 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:34:15 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.1ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (112.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (269.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (303.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (410.0ms) Completed 500 Internal Server Error in 665ms NoMethodError - undefined method `d' for #: activemodel (4.0.4) lib/active_model/attribute_methods.rb:439:in `method_missing' activerecord (4.0.4) lib/active_record/attribute_methods.rb:167:in `method_missing' /project/app/inputs/admin_relationship_select_remote_input.rb:7:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:16:in `__project_app_views_carnival_shared_form__field_html_haml___670823849_88615160' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__1009861816_83560090' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__1009861816_83560090' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__1009861816_83560090' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___54466833_94967770' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___148706485_89068290' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__927436084__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__993268087__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-620162458/variables" for 10.0.2.2 at 2014-08-27 21:34:17 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:34:25 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.5ms) Admin::Country Load (2.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (83.6ms) Admin::City Load (2.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (27.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.4ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (12.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (112.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (254.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (502.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (844.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (892.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (944.6ms) Carnival::AdminUserNotification Load (2.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (47.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (23.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1555ms (Views: 1373.8ms | ActiveRecord: 42.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:29 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:29 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:29 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:29 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:30 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:30 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:30 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:34:31 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:31 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:32 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:32 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:32 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:32 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:33 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:33 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:34 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:34 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:34:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:34:35 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:34:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:34:36 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:34:36 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:34:36 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:34:36 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:34:36 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:35:06 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.0ms) Admin::Country Load (2.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (95.0ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (27.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.2ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (189.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (501.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (815.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (859.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (906.0ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (13.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (112.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1579ms (Views: 1389.7ms | ActiveRecord: 46.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:10 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:10 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:11 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:35:12 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:13 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:13 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:35:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:35:16 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:35:17 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:35:17 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:35:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:35:17 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:35:17 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:35:18 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:37:06 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.8ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (86.1ms) Admin::City Load (2.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (26.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.0ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (50.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (180.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (482.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (757.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (797.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (843.9ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (52.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (27.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.6ms) Completed 200 OK in 1977ms (Views: 1749.1ms | ActiveRecord: 30.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:11 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:37:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:13 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:37:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:37:17 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:37:17 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:37:17 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:37:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:37:18 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:37:18 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:37:18 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:39:05 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (30.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (72.9ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.2ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (25.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.1ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (22.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (141.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (285.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (548.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (589.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (627.2ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (14.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (23.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1491ms (Views: 1464.7ms | ActiveRecord: 15.1ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:07 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:07 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:07 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:08 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:08 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:08 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:08 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:09 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:09 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:39:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:10 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:10 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:10 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:11 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:11 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:12 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:12 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:39:13 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:39:13 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:39:13 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:39:14 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:39:14 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:39:14 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:39:14 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:39:14 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:43:43 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.8ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (77.8ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (28.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.1ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (50.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (181.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (493.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (757.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (798.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (844.3ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (48.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (22.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1886ms (Views: 1717.0ms | ActiveRecord: 29.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:47 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:47 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:47 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:48 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:43:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:50 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:43:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:43:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:43:53 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:43:54 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:43:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:43:54 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:43:54 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:43:55 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:46:38 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.5ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.1ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (34.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.0ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (2.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (25.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (138.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (354.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (557.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (602.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (647.3ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (15.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (22.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1608ms (Views: 1580.0ms | ActiveRecord: 17.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:40 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:40 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:40 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:41 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:41 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:41 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:41 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:42 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:42 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:46:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:43 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:43 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:44 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:44 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:44 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:45 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:46:46 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:46:47 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:46:47 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:46:47 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:46:47 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:46:48 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:46:48 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:46:48 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:46:51 +0000 Started GET "/carnival/load_select_options?q=d&model_name=country&_=1409176003461" for 10.0.2.2 at 2014-08-27 21:46:51 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"d", "model_name"=>"country", "_"=>"1409176003461"} Carnival::AdminUser Load (2.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 0.9ms | ActiveRecord: 2.3ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:47:25 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.8ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (21.4ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.2ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (26.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.4ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (129.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (267.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (539.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (589.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (626.5ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (15.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (22.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1111ms (Views: 1084.7ms | ActiveRecord: 15.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:27 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:47:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:29 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:30 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:47:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:47:33 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:47:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:47:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:47:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:47:34 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:47:34 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:47:34 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:47:54 +0000 Started GET "/carnival/load_select_options?q=d&model_name=country&_=1409176049683" for 10.0.2.2 at 2014-08-27 21:47:55 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"d", "model_name"=>"country", "_"=>"1409176049683"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 1.8ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:49:24 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (10.9ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.5ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.1ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (27.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (53.2ms) Admin::State Load (2.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (90.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (227.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (371.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (566.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (606.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (645.1ms) Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (18.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1511ms (Views: 1482.9ms | ActiveRecord: 17.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:26 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:26 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:27 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:27 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:28 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:28 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:49:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:28 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:29 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:30 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:49:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:49:32 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:49:32 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:49:33 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:49:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:49:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:49:33 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:49:33 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 21:49:41 +0000 Started GET "/carnival/load_select_options?q=e&model_name=country&_=1409176168870" for 10.0.2.2 at 2014-08-27 21:49:41 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"e", "model_name"=>"country", "_"=>"1409176168870"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 1.9ms) Started GET "/carnival/load_select_options?q=er&model_name=country&_=1409176168871" for 10.0.2.2 at 2014-08-27 21:49:42 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"er", "model_name"=>"country", "_"=>"1409176168871"} Carnival::AdminUser Load (2.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 2.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:55:09 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.4ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.3ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (28.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.8ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (138.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (296.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (490.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (531.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (576.5ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (21.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (86.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1585ms (Views: 1560.2ms | ActiveRecord: 15.0ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:11 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:11 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:12 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:14 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:55:18 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:55:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:55:18 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:55:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:55:19 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:55:29 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (90.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.9ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.0ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (36.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.3ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (25.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (147.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (307.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (603.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (651.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (695.1ms) Carnival::AdminUserNotification Load (2.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (28.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (31.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1761ms (Views: 1728.4ms | ActiveRecord: 18.2ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:32 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:32 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:32 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:33 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:33 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:33 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:34 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:34 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 21:55:34 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:34 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:35 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:35 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:35 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:35 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:36 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:36 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:36 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:36 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:37 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:37 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:37 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:38 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 21:55:38 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 21:55:38 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 21:55:39 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 21:55:39 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 21:55:39 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 21:55:39 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 21:55:40 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 21:55:40 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 21:59:54 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.7ms) Admin::Country Load (3.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (101.8ms) Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (26.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (98.8ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (51.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (245.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (487.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (799.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (849.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (901.4ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (55.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (23.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 2072ms (Views: 1832.2ms | ActiveRecord: 32.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:58 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:59 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 21:59:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:01 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:00:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:00:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:00:05 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:00:05 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:00:05 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:00:41 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (40.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.2ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.8ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (28.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.0ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (155.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (307.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (553.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (668.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (716.6ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (16.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (24.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1644ms (Views: 1617.1ms | ActiveRecord: 15.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:44 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:44 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:45 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:00:46 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:46 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:47 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:47 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:47 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:48 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:48 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:49 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:49 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:00:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:00:50 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:00:50 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:00:50 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:00:51 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:00:51 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:01:04 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.1ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.1ms) Admin::City Load (2.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (37.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.4ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (2.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (155.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (327.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (562.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (610.7ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (654.0ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1748ms (Views: 1660.0ms | ActiveRecord: 17.4ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:06 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:06 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:07 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:09 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:09 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:09 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:10 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:11 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:12 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:01:13 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:01:13 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:01:13 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:01:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:01:14 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:01:14 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:01:14 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:01:24 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.7ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (35.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (114.2ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (240.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (404.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (628.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (672.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (715.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (19.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1198ms (Views: 1167.2ms | ActiveRecord: 15.3ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:25 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:25 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:26 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:26 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:26 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:26 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:27 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:27 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:27 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:27 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:28 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:28 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:28 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:28 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:29 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:29 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:29 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:29 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:30 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:30 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:30 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:31 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:31 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:31 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:31 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:01:32 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:01:32 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:01:33 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:01:33 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:01:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:01:33 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:01:34 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:01:48 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (109.6ms) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (45.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.1ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (25.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (154.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (341.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (649.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (693.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (733.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (19.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1206ms (Views: 1174.2ms | ActiveRecord: 17.9ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:50 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:50 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:50 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:51 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:01:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:53 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:01:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:01:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:01:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:01:57 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:01:58 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:01:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:01:58 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:01:58 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 22:02:03 +0000 Started GET "/carnival/load_select_options?q=s&model_name=country&_=1409176913594" for 10.0.2.2 at 2014-08-27 22:02:03 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"s", "model_name"=>"country", "_"=>"1409176913594"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 1.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:03:56 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.3ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.3ms) Admin::City Load (2.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (40.7ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.3ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (132.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (321.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (532.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (573.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (613.1ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (15.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (82.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1579ms (Views: 1552.5ms | ActiveRecord: 16.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:03:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:03:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:03:59 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:03:59 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:03:59 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:03:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:00 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:01 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:01 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:02 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:02 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:02 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:03 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:03 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:03 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:04 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:04 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:04 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:04 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:05 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:04:05 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:04:06 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:04:06 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:04:06 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:04:06 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:04:06 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:04:11 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:04:21 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.7ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (31.8ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (37.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.6ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (154.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (330.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (625.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (668.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (710.4ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (32.5ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1195ms (Views: 1163.5ms | ActiveRecord: 16.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:23 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:23 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:24 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:24 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:24 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:24 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:25 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:25 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:25 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:25 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:25 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:04:26 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:26 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:26 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:27 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:27 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:27 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:27 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:28 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:28 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:28 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:28 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:29 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:29 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:29 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:29 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:04:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:04:30 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:04:30 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:04:30 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:04:31 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:04:31 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:04:31 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:08:06 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (31.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (13.0ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (86.0ms) Admin::City Load (2.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (30.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (39.1ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (55.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (200.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (531.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (812.8ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (856.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (906.8ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (49.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (97.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1612ms (Views: 1434.9ms | ActiveRecord: 31.5ms) Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:08:10 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:10 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:10 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:10 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:11 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:11 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:11 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:12 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:12 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:13 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:13 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:14 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:14 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:14 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:14 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:15 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:15 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:16 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:16 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:16 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:08:17 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:08:18 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:08:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:08:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:08:18 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:08:18 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:08:22 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:08:32 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.8ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.7ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (36.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.5ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (103.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (230.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (399.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (650.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (704.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (746.4ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (34.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 1754ms (Views: 1723.6ms | ActiveRecord: 15.9ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:34 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:08:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:37 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:40 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:08:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:08:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:08:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:08:41 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:08:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:08:42 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:08:42 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:08:42 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:09:08 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.7ms) Admin::Country Load (2.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (41.2ms) Admin::City Load (2.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (51.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (42.7ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (151.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (349.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (597.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (641.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (685.5ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (20.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (33.9ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1775ms (Views: 1742.5ms | ActiveRecord: 18.1ms) Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:10 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:11 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:11 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:11 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:11 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:12 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:12 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:12 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:12 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:13 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:09:13 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:13 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:14 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:14 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:14 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:14 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:15 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:15 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:15 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:17 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:09:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:09:18 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:09:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:09:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:09:19 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:09:19 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:09:19 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:09:20 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:10:34 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (115.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.2ms) Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (126.0ms) Admin::City Load (2.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (26.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.2ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (51.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (188.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (486.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (957.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1088.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1135.3ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (49.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (83.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.8ms) Completed 200 OK in 2264ms (Views: 2090.2ms | ActiveRecord: 35.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:39 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:39 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:39 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:40 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:40 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:41 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:10:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:41 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:42 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:42 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:43 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:43 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:43 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:44 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:44 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:10:45 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:10:45 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:10:46 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:10:46 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:10:46 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:10:46 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:10:47 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:10:47 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:14:35 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (31.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.1ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (91.6ms) Admin::City Load (2.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (29.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (38.4ms) Admin::State Load (2.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (2.0ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (56.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (210.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (556.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (850.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (893.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (943.5ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (50.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (25.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.4ms) Completed 200 OK in 2224ms (Views: 1966.4ms | ActiveRecord: 34.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:39 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:39 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:39 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:40 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:40 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:40 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:40 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:40 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:41 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:41 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:41 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:14:41 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:42 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:42 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:42 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:42 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:43 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:43 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:43 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:43 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:44 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:44 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:44 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:45 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:45 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:14:45 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:14:47 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:14:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:14:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:14:47 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:14:48 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:14:48 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:15:14 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Admin::Country Load (2.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (48.9ms) Admin::City Load (2.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (50.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (59.4ms) Admin::State Load (2.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (190.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (389.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (680.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (725.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (771.5ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (18.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (93.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.5ms) Completed 200 OK in 1945ms (Views: 1911.5ms | ActiveRecord: 19.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:16 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:16 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:17 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:17 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:17 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:18 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:18 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:15:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:19 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:19 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:20 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:20 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:21 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:22 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:22 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:15:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:15:23 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:15:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:15:24 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:15:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:15:24 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:15:25 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:15:25 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-27 22:16:17 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (12.3ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.9ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__1004642174__620352868 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (28.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__789287454_94851040 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.5ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (26.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (139.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (348.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (545.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___54466833_94967770 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (585.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (623.8ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (15.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (22.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.3ms) Completed 200 OK in 1492ms (Views: 1466.1ms | ActiveRecord: 14.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:19 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:19 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:20 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:20 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-27 22:16:21 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:22 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-27 22:16:25 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-27 22:16:26 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-27 22:16:26 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-27 22:16:26 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-27 22:16:26 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-27 22:16:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-27 22:16:27 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-27 22:16:27 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-27 22:16:38 +0000 Started GET "/carnival/load_select_options?q=e&model_name=country&_=1409177782483" for 10.0.2.2 at 2014-08-27 22:16:38 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"e", "model_name"=>"country", "_"=>"1409177782483"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 12ms (Views: 1.6ms | ActiveRecord: 2.0ms) Started GET "/carnival/load_select_options?q=ew&model_name=country&_=1409177782484" for 10.0.2.2 at 2014-08-27 22:16:38 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ew", "model_name"=>"country", "_"=>"1409177782484"} Carnival::AdminUser Load (2.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 2.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:23:58 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (2.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (37.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Admin::Country Load (9.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (135.1ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__594149921__621502968 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (55.3ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___659964916_88553580 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (32.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (150.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (473.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (817.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___127612568_88664060 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1296.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1469.8ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (46.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (11.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (4.9ms) Completed 200 OK in 3177ms (Views: 2941.2ms | ActiveRecord: 31.1ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:02 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:02 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:02 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:03 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:03 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:03 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:03 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:04 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:04 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:04 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:04 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:04 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:05 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:05 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:05 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:06 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:06 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:06 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:07 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:07 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:07 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:08 +0000 Started GET "/assets/favicon.ico" for 10.0.2.2 at 2014-08-28 13:24:08 +0000 ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (80.1ms) Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-28 13:24:09 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:24:09 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:24:09 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:24:09 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:24:10 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:24:10 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:24:10 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:24:10 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:24:40 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (81.1ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__594149921__621502968 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.3ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___659964916_88553580 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (125.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (293.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (530.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___127612568_88664060 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (566.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (609.3ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (41.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1080ms (Views: 970.6ms | ActiveRecord: 21.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:42 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:42 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:42 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:42 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:43 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:43 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:43 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:43 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:44 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:24:44 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:44 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:44 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:45 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:45 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:45 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:46 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:46 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:47 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:47 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:24:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:24:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:24:47 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:24:48 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:24:48 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:24:48 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:24:48 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:24:48 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:27:50 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (44.4ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__594149921__621502968 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___659964916_88553580 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Admin::State Load (1.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (27.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (135.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (336.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (537.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___127612568_88664060 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (574.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (608.4ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1053ms (Views: 943.2ms | ActiveRecord: 21.9ms) Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:52 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:52 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:52 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:53 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:53 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:53 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:53 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:54 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:54 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:27:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:54 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:55 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:55 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:56 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:57 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:57 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:27:57 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:27:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:27:58 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:27:58 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:27:58 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:27:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:27:58 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:27:59 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 13:28:04 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232474805" for 10.0.2.2 at 2014-08-28 13:28:04 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232474805"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 5ms NameError - wrong constant name country: activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:108:in `load_select_options' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__550788691__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__222109707__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/carnival/load_select_options?q=az&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232474806" for 10.0.2.2 at 2014-08-28 13:28:05 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"az", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232474806"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 3ms NameError - wrong constant name country: activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:108:in `load_select_options' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__550788691__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__222109707__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/carnival/load_select_options?q=azi&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232474807" for 10.0.2.2 at 2014-08-28 13:28:37 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"azi", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232474807"} Carnival::AdminUser Load (2.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 110ms NameError - uninitialized constant Country: activesupport (4.0.4) lib/active_support/dependencies.rb:501:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:108:in `load_select_options' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__550788691__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__222109707__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/carnival/load_select_options?q=az&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232474808" for 10.0.2.2 at 2014-08-28 13:28:47 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"az", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232474808"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 115244ms NameError - uninitialized constant Country: activesupport (4.0.4) lib/active_support/dependencies.rb:501:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:109:in `load_select_options' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__550788691__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__222109707__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:30:50 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (12.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (105.0ms) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__656173291__619769138 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (44.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__606550232_92738230 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (30.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (139.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (365.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (667.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___626666793_92829320 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1023.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1100.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (40.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (43.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.5ms) Completed 200 OK in 2251ms (Views: 2037.9ms | ActiveRecord: 31.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:53 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:53 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:54 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:54 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:54 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:54 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:54 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:55 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:55 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:55 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:55 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:30:56 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:56 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:56 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:56 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:56 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:57 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:57 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:57 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:57 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:57 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:58 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:58 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:59 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:30:59 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:30:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:30:59 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:31:00 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:31:00 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:31:00 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:31:00 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:31:00 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 13:31:01 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232656600" for 10.0.2.2 at 2014-08-28 13:31:01 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232656600"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%a%') Completed 200 OK in 8051ms (Views: 1.1ms | ActiveRecord: 3.5ms) Started GET "/carnival/load_select_options?q=az&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232656601" for 10.0.2.2 at 2014-08-28 13:31:10 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"az", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232656601"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (name like '%az%') Completed 200 OK in 2438ms (Views: 1.0ms | ActiveRecord: 3.6ms)  (0.1ms) begin transaction SQL (32.3ms) INSERT INTO "countries" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "Ar"], ["created_at", Thu, 28 Aug 2014 13:32:52 UTC +00:00], ["name", "Argentina"], ["updated_at", Thu, 28 Aug 2014 13:32:52 UTC +00:00]]  (2.4ms) commit transaction  (0.3ms) begin transaction SQL (7.0ms) INSERT INTO "countries" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "Bo"], ["created_at", Thu, 28 Aug 2014 13:33:09 UTC +00:00], ["name", "Bolivia"], ["updated_at", Thu, 28 Aug 2014 13:33:09 UTC +00:00]]  (2.5ms) commit transaction  (0.5ms) begin transaction SQL (3.5ms) INSERT INTO "countries" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "Ca"], ["created_at", Thu, 28 Aug 2014 13:33:19 UTC +00:00], ["name", "Canada"], ["updated_at", Thu, 28 Aug 2014 13:33:19 UTC +00:00]]  (2.3ms) commit transaction Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:33:31 +0000 ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Admin::Country Load (9.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (99.9ms) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___288108630__619760828 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (47.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___1063126519_102167320 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.5ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (29.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (138.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (366.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (658.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__21087908_102258400 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (1017.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (1098.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (38.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (43.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.8ms) Completed 200 OK in 2202ms (Views: 2001.3ms | ActiveRecord: 28.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:35 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:37 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:33:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:33:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:33:41 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:33:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:33:41 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:33:41 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:33:42 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 13:33:44 +0000 Started GET "/carnival/load_select_options?q=ca&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409232817563" for 10.0.2.2 at 2014-08-28 13:33:44 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ca", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409232817563"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%ca%') Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 2.5ms) Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-28 13:33:49 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YSxm0ZyghCUeUihm+ZIQTvM8AMEoWvb7Exy4DnXYmu0=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"4", "city_ids"=>["", "3"]}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (2.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1 SQL (11.3ms) UPDATE "states" SET "country_id" = ?, "updated_at" = ? WHERE "states"."id" = 4 [["country_id", 4], ["updated_at", Thu, 28 Aug 2014 13:33:49 UTC +00:00]]  (2.7ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 59ms (ActiveRecord: 19.3ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-28 13:33:49 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (170.7ms)  (1.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.9ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (89.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.8ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (462.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 921ms (Views: 817.9ms | ActiveRecord: 11.0ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:50 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:50 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:51 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:51 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:51 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:52 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:52 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:52 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:33:52 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:53 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:53 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:53 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:53 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:54 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:54 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:54 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:55 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:55 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:55 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:56 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:56 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 13:33:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:33:56 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:33:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:33:57 +0000 Started GET "/assets/carnival/novo.png" for 10.0.2.2 at 2014-08-28 13:33:57 +0000 Started GET "/assets/carnival/sort_both.png" for 10.0.2.2 at 2014-08-28 13:33:57 +0000 Started GET "/assets/carnival/sort_desc.png" for 10.0.2.2 at 2014-08-28 13:33:57 +0000 Started GET "/assets/carnival/sprites-active.png" for 10.0.2.2 at 2014-08-28 13:33:58 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409232833307" for 10.0.2.2 at 2014-08-28 13:33:58 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409232833307"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.5ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (33.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.5ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (50.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (156.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (34.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (134.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (31.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (134.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (27.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (6.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (135.9ms) Completed 200 OK in 1892ms (Views: 1881.9ms | ActiveRecord: 6.9ms) Started GET "/assets/carnival/search.png" for 10.0.2.2 at 2014-08-28 13:34:00 +0000 Started GET "/assets/carnival/datatables-loading.gif" for 10.0.2.2 at 2014-08-28 13:34:00 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:34:02 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.4ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___288108630__619760828 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.9ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___1063126519_102167320 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.9ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (200.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (372.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__21087908_102258400 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (422.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (469.2ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (47.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 864ms (Views: 847.7ms | ActiveRecord: 11.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:03 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:03 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:04 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:04 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:04 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:04 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:04 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:05 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:05 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:05 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:05 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:34:05 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:06 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:06 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:06 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:06 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:06 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:07 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:07 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:07 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:07 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:08 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:08 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:08 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:08 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:34:09 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:34:09 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:34:09 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:34:09 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:34:09 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:34:10 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:34:10 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:34:10 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:44:34 +0000 ActiveRecord::SchemaMigration Load (2.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 143ms SyntaxError - /project/test/dummy/app/presenters/admin/state_presenter.rb:23: syntax error, unexpected =>, expecting keyword_end ...n_relationship_select_remote => {:search_field => :name}, ... ^ /project/test/dummy/app/presenters/admin/state_presenter.rb:23: syntax error, unexpected ',', expecting keyword_end: app/presenters/admin/state_presenter.rb:23:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /project/app/controllers/carnival/base_admin_controller.rb:124:in `instantiate_presenter' /project/app/controllers/carnival/base_admin_controller.rb:61:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__394929452__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__268513803__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/82369950/variables" for 10.0.2.2 at 2014-08-28 13:44:35 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:48:53 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (42.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (217.6ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (538.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (652.9ms) Completed 500 Internal Server Error in 885ms NoMethodError - undefined method `first' for :admin_relationship_select_remote:Symbol: /project/app/views/carnival/shared/form/_field.html.haml:14:in `__project_app_views_carnival_shared_form__field_html_haml___368222473_89254030' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___967856880_89037790' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___967856880_89037790' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___967856880_89037790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___101716022_82137160' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___156501631_89090530' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__394929452__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__268513803__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-619595628/variables" for 10.0.2.2 at 2014-08-28 13:48:55 +0000 Started POST "/__better_errors/-619595628/eval" for 10.0.2.2 at 2014-08-28 13:49:04 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:49:32 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (9.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (106.5ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (12.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (53.5ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (168.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (371.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (633.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (669.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (707.2ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (37.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (10.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (1.9ms) Completed 200 OK in 1555ms (Views: 1527.1ms | ActiveRecord: 24.9ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:34 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:35 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:35 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:35 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:49:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:37 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:38 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:39 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:40 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:40 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:49:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:49:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:49:40 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:49:41 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:49:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:49:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:49:41 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:49:42 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:52:12 +0000 SyntaxError - /project/app/controllers/carnival/base_admin_controller.rb:111: syntax error, unexpected tIDENTIFIER, expecting '}' list << {id: elem.id, text: elem.send search_field.to_sym} ^ /project/app/controllers/carnival/base_admin_controller.rb:111: syntax error, unexpected '}', expecting keyword_end /project/app/controllers/carnival/base_admin_controller.rb:152: syntax error, unexpected end-of-input, expecting keyword_end: /project/app/controllers/carnival/base_admin_controller.rb:111:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' app/controllers/admin/states_controller.rb:2:in `' app/controllers/admin/states_controller.rb:1:in `' activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in' activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file' activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load' activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant' activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.0.4) lib/active_support/inflector/methods.rb:228:in `block in constantize' activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize' activesupport (4.0.4) lib/active_support/dependencies.rb:535:in `get' activesupport (4.0.4) lib/active_support/dependencies.rb:566:in `constantize' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:66:in `controller' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:44:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__268513803__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-621111888/variables" for 10.0.2.2 at 2014-08-28 13:52:13 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:52:35 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (45.5ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.3ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (68.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (166.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (338.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (543.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (579.3ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (614.4ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (42.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1372ms (Views: 1249.2ms | ActiveRecord: 24.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:37 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:37 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:37 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:38 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:38 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:38 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:38 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:38 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:39 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:39 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:39 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:52:39 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:39 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:40 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:40 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:40 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:40 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:40 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:41 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:41 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:41 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:41 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:42 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:42 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:42 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:42 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:52:42 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:52:43 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:52:43 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:52:43 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:52:43 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:52:44 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:52:44 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:52:44 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 13:52:46 +0000 Started GET "/carnival/load_select_options?q=a&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409233960149" for 10.0.2.2 at 2014-08-28 13:52:46 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409233960149"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (0.7ms) SELECT "countries".* FROM "countries" WHERE ( like '%a%') SQLite3::SQLException: near "'%a%'": syntax error: SELECT "countries".* FROM "countries" WHERE ( like '%a%') Completed 500 Internal Server Error in 7ms SQLite3::SQLException - near "'%a%'": syntax error: sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `prepare' activerecord (4.0.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:299:in `block in exec_query' activerecord (4.0.4) lib/active_record/connection_adapters/abstract_adapter.rb:442:in `block in log' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activerecord (4.0.4) lib/active_record/connection_adapters/abstract_adapter.rb:437:in `log' activerecord (4.0.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:295:in `exec_query' activerecord (4.0.4) lib/active_record/connection_adapters/sqlite3_adapter.rb:507:in `select' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `block in select_all' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/query_cache.rb:76:in `cache_sql' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `select_all' activerecord (4.0.4) lib/active_record/querying.rb:36:in `find_by_sql' activerecord (4.0.4) lib/active_record/relation.rb:585:in `exec_queries' activerecord (4.0.4) lib/active_record/relation.rb:471:in `load' activerecord (4.0.4) lib/active_record/relation.rb:220:in `to_a' bullet (4.6.0) lib/bullet/active_record4.rb:10:in `to_a' activerecord (4.0.4) lib/active_record/relation/delegation.rb:12:in `each' /project/app/controllers/carnival/base_admin_controller.rb:110:in `load_select_options' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__109898009__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__268513803__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:53:50 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.4ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (189.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (352.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (389.1ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (424.5ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1046ms (Views: 1029.5ms | ActiveRecord: 12.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:52 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:53:53 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:53 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:54 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:54 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:54 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:54 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:54 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:54 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:55 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:55 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:55 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:56 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:56 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:56 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:53:56 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:53:57 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:53:57 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:53:57 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:53:57 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:53:58 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:53:58 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:53:58 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 13:53:59 +0000 Started GET "/carnival/load_select_options?q=a&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409234033974" for 10.0.2.2 at 2014-08-28 13:53:59 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409234033974"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%a%') Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=a&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409234033975" for 10.0.2.2 at 2014-08-28 13:54:04 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"a", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409234033975"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (name like '%a%') Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 3.5ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 13:54:46 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.3ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (180.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (332.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (371.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (413.0ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1028ms (Views: 1012.1ms | ActiveRecord: 11.6ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:47 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:48 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:48 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:48 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:48 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:49 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:49 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:49 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:49 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 13:54:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:50 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:50 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:50 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:51 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:51 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:51 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:52 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:52 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 13:54:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 13:54:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 13:54:53 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 13:54:53 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 13:54:54 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 13:54:54 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 13:54:54 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 13:54:54 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 13:54:57 +0000 Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409234090313" for 10.0.2.2 at 2014-08-28 13:54:57 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409234090313"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 3.0ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:45:33 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.1ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (184.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (335.4ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (371.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (405.2ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.3ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1029ms (Views: 1013.3ms | ActiveRecord: 11.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:35 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:35 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:36 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:45:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:37 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:37 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:45:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:45:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:45:40 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:45:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:45:41 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:45:41 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:45:41 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:45:41 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:45:50 +0000 Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237137215" for 10.0.2.2 at 2014-08-28 14:45:50 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237137215"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 3.5ms) Started GET "/carnival/load_select_options?q=bra&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237137216" for 10.0.2.2 at 2014-08-28 14:45:52 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"bra", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237137216"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%bra%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.8ms) Started GET "/carnival/load_select_options?q=braz&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237137217" for 10.0.2.2 at 2014-08-28 14:45:53 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"braz", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237137217"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%braz%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:47:43 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (180.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (332.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (366.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (399.4ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (55.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1020ms (Views: 1003.0ms | ActiveRecord: 12.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:45 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:45 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:46 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:47:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:47 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:48 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:49 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:47:50 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:47:50 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:47:51 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:47:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:47:51 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:47:51 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:47:51 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:47:52 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:47:54 +0000 Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237267858" for 10.0.2.2 at 2014-08-28 14:47:55 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237267858"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=braz&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237267859" for 10.0.2.2 at 2014-08-28 14:48:00 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"braz", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237267859"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%braz%') Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 2.6ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:49:42 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.8ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (241.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (400.6ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (439.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (475.6ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1069ms (Views: 1053.6ms | ActiveRecord: 12.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:43 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:43 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:43 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:44 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:44 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:44 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:44 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:45 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:45 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:45 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:49:45 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:45 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:46 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:46 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:46 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:46 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:46 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:47 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:47 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:47 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:47 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:47 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:48 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:48 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:48 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:48 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:49:49 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:49:49 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:49:49 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:49:49 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:49:50 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:49:50 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:49:50 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:49:50 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:49:54 +0000 Started GET "/carnival/load_select_options?q=as&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237386032" for 10.0.2.2 at 2014-08-28 14:49:55 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"as", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237386032"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%as%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=asd&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237386033" for 10.0.2.2 at 2014-08-28 14:49:57 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"asd", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237386033"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%asd%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=as&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237386034" for 10.0.2.2 at 2014-08-28 14:50:00 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"as", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237386034"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%as%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237386035" for 10.0.2.2 at 2014-08-28 14:50:01 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237386035"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:50:11 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (3.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (97.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (199.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (365.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (401.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (439.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (48.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 811ms (Views: 792.0ms | ActiveRecord: 14.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:12 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:12 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:12 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:13 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:13 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:13 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:50:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:14 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:14 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:15 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:15 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:15 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:16 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:16 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:17 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:50:17 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:50:17 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:50:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:50:18 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:50:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:50:18 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:50:18 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:50:19 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:50:20 +0000 Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237414629" for 10.0.2.2 at 2014-08-28 14:50:21 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237414629"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 4.1ms) Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237414630" for 10.0.2.2 at 2014-08-28 14:50:53 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237414630"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.8ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237414631" for 10.0.2.2 at 2014-08-28 14:51:17 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237414631"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 3.1ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:51:33 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.5ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.3ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (92.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (188.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (340.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (379.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (413.2ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 852ms (Views: 835.9ms | ActiveRecord: 12.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:34 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:34 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:34 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:35 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:35 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:35 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:35 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:35 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:36 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:36 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:36 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:51:36 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:36 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:37 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:37 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:37 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:37 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:37 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:38 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:38 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:38 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:38 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:38 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:39 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:39 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:39 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:39 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:51:40 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:51:40 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:51:40 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:51:40 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:51:40 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:51:41 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:51:41 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:51:41 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:51:43 +0000 Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237496989" for 10.0.2.2 at 2014-08-28 14:51:44 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237496989"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=ca&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237496990" for 10.0.2.2 at 2014-08-28 14:51:48 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ca", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237496990"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%ca%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.6ms) Started GET "/carnival/load_select_options?q=nr&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237496991" for 10.0.2.2 at 2014-08-28 14:51:52 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"nr", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237496991"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%nr%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.6ms) Started GET "/carnival/load_select_options?q=nt&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237496992" for 10.0.2.2 at 2014-08-28 14:51:57 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"nt", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237496992"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE (name like '%nt%') Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 3.2ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:52:26 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.6ms) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.6ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.4ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (186.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (339.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (374.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (407.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1086ms (Views: 1070.7ms | ActiveRecord: 12.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:27 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:28 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:28 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:29 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:30 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:30 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:31 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:31 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:32 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:32 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:32 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:32 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:52:33 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:52:33 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:52:33 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:52:33 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:52:34 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:52:34 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:52:34 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:52:35 +0000 Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237549889" for 10.0.2.2 at 2014-08-28 14:52:36 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237549889"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 2.7ms) Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-28 14:52:44 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YSxm0ZyghCUeUihm+ZIQTvM8AMEoWvb7Exy4DnXYmu0=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"4", "city_ids"=>["", "3"]}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::State Exists (1.0ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1  (0.1ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 79ms (ActiveRecord: 5.1ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-28 14:52:44 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.3ms) Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (146.7ms)  (1.4ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.4ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (31.6ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (4.0ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (330.3ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.0ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (51.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 760ms (Views: 699.8ms | ActiveRecord: 9.4ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:45 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:45 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:46 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:46 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:46 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:46 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:47 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:47 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:47 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:48 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:48 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:49 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:50 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:50 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:51 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 14:52:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:52:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:52:51 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:52:52 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409237567998" for 10.0.2.2 at 2014-08-28 14:52:52 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409237567998"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (27.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (8.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (133.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.4ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (130.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.3ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (132.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (33.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (128.1ms) Completed 200 OK in 1767ms (Views: 1755.5ms | ActiveRecord: 8.1ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 14:52:57 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (19.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.1ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (240.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (408.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (449.6ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (484.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (8.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 822ms (Views: 804.9ms | ActiveRecord: 12.7ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:58 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:59 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:59 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:59 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:52:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:00 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:00 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:01 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:01 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:01 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:02 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:02 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:03 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:53:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:53:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 14:53:04 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 14:53:05 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:53:05 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 14:53:05 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 14:53:05 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 14:53:14 +0000 Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409237581271" for 10.0.2.2 at 2014-08-28 14:53:15 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409237581271"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 3.1ms) Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-28 14:53:20 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YSxm0ZyghCUeUihm+ZIQTvM8AMEoWvb7Exy4DnXYmu0=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"2", "city_ids"=>["", "3"]}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.9ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1 SQL (2.4ms) UPDATE "states" SET "country_id" = ?, "updated_at" = ? WHERE "states"."id" = 4 [["country_id", 2], ["updated_at", Thu, 28 Aug 2014 14:53:21 UTC +00:00]]  (2.0ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 23ms (ActiveRecord: 8.9ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-28 14:53:21 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (129.5ms)  (1.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (68.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (323.9ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 639ms (Views: 626.5ms | ActiveRecord: 9.6ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:22 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:22 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:22 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:22 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:22 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:23 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:23 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:24 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 14:53:24 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:24 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:25 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:25 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:25 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:26 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:26 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:26 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:27 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:28 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:28 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:28 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:28 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:28 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 14:53:29 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 14:53:29 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 14:53:29 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 14:53:29 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409237604707" for 10.0.2.2 at 2014-08-28 14:53:30 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409237604707"} Carnival::AdminUser Load (2.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (2.1ms) SELECT COUNT(*) FROM "states" Admin::State Load (2.0ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (39.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (134.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (63.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (137.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (82.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (132.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (155.3ms) Completed 200 OK in 1861ms (Views: 1847.9ms | ActiveRecord: 9.0ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 15:02:14 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.8ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (7.9ms) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.4ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (94.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (191.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (357.2ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (398.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (431.4ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1089ms (Views: 1070.8ms | ActiveRecord: 13.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:15 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:15 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:15 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:16 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:16 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:16 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:16 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:16 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:17 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:17 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:17 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:17 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:18 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:18 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:18 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:18 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:18 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:19 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:19 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:19 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:19 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:19 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:20 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:20 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:20 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:20 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:21 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:21 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 15:02:21 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 15:02:21 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 15:02:22 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 15:02:22 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 15:02:22 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 15:02:22 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 15:02:22 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 15:02:24 +0000 Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409238138131" for 10.0.2.2 at 2014-08-28 15:02:25 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409238138131"} Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 3.0ms) Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-28 15:02:28 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YSxm0ZyghCUeUihm+ZIQTvM8AMEoWvb7Exy4DnXYmu0=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "city_ids"=>["", "3"]}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1 SQL (1.7ms) UPDATE "states" SET "country_id" = ?, "updated_at" = ? WHERE "states"."id" = 4 [["country_id", 1], ["updated_at", Thu, 28 Aug 2014 15:02:28 UTC +00:00]]  (2.0ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 20ms (ActiveRecord: 7.7ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-28 15:02:29 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (171.2ms)  (1.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (315.5ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.6ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 637ms (Views: 625.7ms | ActiveRecord: 9.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:29 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:30 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:30 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:32 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:32 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:32 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:33 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:34 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:35 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:35 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:35 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:36 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 15:02:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 15:02:36 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 15:02:36 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409238152557" for 10.0.2.2 at 2014-08-28 15:02:36 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409238152557"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.4ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (179.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (136.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (145.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (138.6ms) Completed 200 OK in 1791ms (Views: 1783.2ms | ActiveRecord: 5.3ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 15:02:40 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.1ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (23.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.2ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (91.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (185.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (354.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (391.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (428.1ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 784ms (Views: 767.8ms | ActiveRecord: 11.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:41 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:41 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:41 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:41 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:42 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:42 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:42 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:42 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:42 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:43 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:43 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 15:02:43 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:43 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:44 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:44 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:44 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:44 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:44 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:45 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:45 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:45 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:45 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:45 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:46 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:46 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:46 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:46 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:46 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 15:02:47 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 15:02:47 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 15:02:47 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 15:02:47 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 15:02:47 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 15:02:48 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 15:02:48 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 15:02:48 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 15:03:35 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.8ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.3ms) Admin::State Load (1.4ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.4ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (139.2ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (313.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (574.3ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (606.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (639.8ms) Completed 500 Internal Server Error in 823ms NoMethodError - undefined method `id' for nil:NilClass: /project/app/inputs/admin_relationship_select_remote_input.rb:24:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:23:in `__project_app_views_carnival_shared_form__field_html_haml___368222473_82453830' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___967856880__621186898' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___967856880__621186898' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___967856880__621186898' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_nested_form.html.haml:20:in `block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480' haml (4.0.5) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.5) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.5) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.5) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:1864:in `block in fields_for_nested_model' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:699:in `fields_for' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:1863:in `fields_for_nested_model' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:1849:in `block in fields_for_with_nested_attributes' activerecord (4.0.4) lib/active_record/relation/delegation.rb:13:in `each' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:1847:in `fields_for_with_nested_attributes' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:1521:in `fields_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/builder.rb:26:in `simple_fields_for' /project/app/views/carnival/shared/form/_nested_form.html.haml:12:in `__project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:11:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml___967856880_89037790' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml___967856880_89037790' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml___967856880_89037790' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml___101716022_82137160' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/edit.html.haml:6:in `__project_app_views_carnival_base_admin_edit_html_haml___156501631_89090530' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:65:in `block (2 levels) in edit' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:25:in `edit' /project/app/controllers/carnival/base_admin_controller.rb:62:in `edit' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__394929452__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__268513803__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/-619342958/variables" for 10.0.2.2 at 2014-08-28 15:03:36 +0000 Started POST "/__better_errors/-619342958/eval" for 10.0.2.2 at 2014-08-28 15:27:36 +0000 Started POST "/__better_errors/-619342958/eval" for 10.0.2.2 at 2014-08-28 15:27:50 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 16:30:15 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (43.5ms) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.6ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (101.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (315.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (514.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_82137160 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (549.9ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (585.5ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (32.8ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1269ms (Views: 1160.4ms | ActiveRecord: 20.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:17 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:17 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:18 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:18 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:18 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:18 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:18 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:19 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:19 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:19 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:19 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:30:19 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:20 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:20 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:20 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:20 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:20 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:21 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:21 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:21 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:21 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:21 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:22 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:22 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:22 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:23 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:23 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:30:23 +0000 Started GET "/assets/carnival/fonts/opensans-regular-webfont.woff" for 10.0.2.2 at 2014-08-28 16:30:23 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:30:24 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:30:24 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:30:24 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:30:24 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:30:24 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:30:25 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 16:30:25 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 16:33:12 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (178.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (330.7ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022__620991148 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (373.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (406.7ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.5ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (52.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 778ms (Views: 763.8ms | ActiveRecord: 10.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:13 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:14 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:14 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:14 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:14 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:14 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:15 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:15 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:15 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:15 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:33:15 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:16 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:16 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:16 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:16 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:16 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:17 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:17 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:17 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:17 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:18 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:18 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:18 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:18 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:19 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:19 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:33:19 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:33:19 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:33:19 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:33:20 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:33:20 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:33:20 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:33:20 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 16:33:31 +0000 Started GET "/carnival/load_select_options?q=nr&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243596243" for 10.0.2.2 at 2014-08-28 16:33:32 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"nr", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243596243"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%nr%') Completed 200 OK in 22ms (Views: 0.2ms | ActiveRecord: 2.9ms) Started GET "/carnival/load_select_options?q=bra&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243596244" for 10.0.2.2 at 2014-08-28 16:33:35 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"bra", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243596244"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (name like '%bra%') Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 3.3ms) Started GET "/carnival/load_select_options?q=ba&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243596245" for 10.0.2.2 at 2014-08-28 16:33:43 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ba", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243596245"} Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%ba%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 3.1ms) Started GET "/carnival/load_select_options?q=bra&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243596246" for 10.0.2.2 at 2014-08-28 16:33:49 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"bra", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243596246"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%bra%') Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 2.6ms) Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243596247" for 10.0.2.2 at 2014-08-28 16:33:54 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243596247"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 2.8ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 16:38:11 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (36.6ms) Admin::Country Load (1.9ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (8.3ms) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.7ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.8ms) Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (95.9ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (194.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (395.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022__620991148 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (432.5ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (470.4ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 1127ms (Views: 1111.2ms | ActiveRecord: 11.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:12 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:12 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:13 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:13 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:13 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:13 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:13 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:14 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:14 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:14 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:14 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:38:14 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:15 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:15 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:15 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:15 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:16 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:16 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:16 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:16 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:16 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:17 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:17 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:17 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:17 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:18 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:38:18 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:38:18 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:38:18 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:38:19 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:38:19 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:38:19 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:38:19 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 16:38:23 +0000 Started GET "/carnival/load_select_options?q=bra&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243895173" for 10.0.2.2 at 2014-08-28 16:38:24 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"bra", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243895173"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%bra%') Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 3.1ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 16:39:19 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.1ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.8ms) Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.9ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (93.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (196.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (365.9ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022__620991148 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (413.8ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (454.0ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.0ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1045ms (Views: 1029.8ms | ActiveRecord: 11.0ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:20 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:21 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:21 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:39:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:23 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:23 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:23 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:24 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:24 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:25 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:25 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:26 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:39:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:39:26 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:39:26 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:39:26 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:39:27 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:39:27 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:39:27 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 16:39:28 +0000 Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409243963034" for 10.0.2.2 at 2014-08-28 16:39:29 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409243963034"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 2.6ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243963035" for 10.0.2.2 at 2014-08-28 16:39:34 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243963035"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.6ms) Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243963036" for 10.0.2.2 at 2014-08-28 16:39:41 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243963036"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/carnival/load_select_options?q=bra&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409243963037" for 10.0.2.2 at 2014-08-28 16:39:52 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"bra", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409243963037"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE (name like '%bra%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 2.9ms) Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 16:40:30 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (3.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.7ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (5.3ms) Admin::City Load (1.2ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (7.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.8ms) Admin::State Load (1.5ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (118.8ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (210.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (367.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022__633817408 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (459.0ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (493.8ms) Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 831ms (Views: 814.0ms | ActiveRecord: 12.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:31 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:31 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:31 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:32 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:32 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:32 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:32 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:32 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:33 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:33 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:33 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:40:33 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:33 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:34 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:34 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:34 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:34 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:34 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:35 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:35 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:35 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:35 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:35 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:36 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:36 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:36 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:36 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:36 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:40:37 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:40:37 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:40:37 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:40:37 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:40:38 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:40:38 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:40:38 +0000 Started GET "/admin/states/4/edit" for 10.0.2.2 at 2014-08-28 16:44:28 +0000 Processing by Admin::StatesController#edit as HTML Parameters: {"id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.3ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (49.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (6.6ms) Admin::City Load (2.0ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (3.1ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.7ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.9ms) Admin::State Load (1.6ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (86.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (183.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (374.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022__633396598 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (419.4ms) Rendered /project/app/views/carnival/base_admin/edit.html.haml within layouts/carnival/admin (456.7ms) Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 854ms (Views: 836.6ms | ActiveRecord: 12.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:29 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:30 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:30 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:30 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:30 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:30 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:31 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:31 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:31 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:31 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:31 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:44:32 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:32 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:32 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:32 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:32 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:33 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:33 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:33 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:33 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:33 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:34 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:34 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:34 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:34 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:35 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:35 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:44:35 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:44:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:44:36 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:44:36 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:44:36 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:44:36 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:44:36 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 16:44:43 +0000 Started GET "/carnival/load_select_options?q=nt&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409244272306" for 10.0.2.2 at 2014-08-28 16:44:44 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"nt", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409244272306"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE (name like '%nt%') Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 3.0ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409244272307" for 10.0.2.2 at 2014-08-28 16:44:49 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409244272307"} Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 4.1ms) Started PATCH "/admin/states/4" for 10.0.2.2 at 2014-08-28 16:45:05 +0000 Processing by Admin::StatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YSxm0ZyghCUeUihm+ZIQTvM8AMEoWvb7Exy4DnXYmu0=", "admin_state"=>{"name"=>"state2", "code"=>"s2", "country_id"=>"1", "city_ids"=>["", "3"], "cities_attributes"=>{"0"=>{"id"=>"", "_destroy"=>"false", "name"=>"argentinacity", "country_id"=>"2"}, "1"=>{"id"=>"", "_destroy"=>"false", "name"=>"brazilcity", "country_id"=>"1"}}}, "commit"=>"Atualizar", "id"=>"4"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::State Load (1.8ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", "4"]] Unpermitted parameters: utf8, _method, authenticity_token, commit, id  (0.1ms) begin transaction Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 3]] Admin::City Load (0.1ms) SELECT "cities".* FROM "cities" WHERE "cities"."state_id" = ? [["state_id", 4]] Admin::State Exists (0.1ms) SELECT 1 AS one FROM "states" WHERE ("states"."code" = 's2' AND "states"."id" != 4) LIMIT 1 SQL (3.1ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 2], ["created_at", Thu, 28 Aug 2014 16:45:05 UTC +00:00], ["name", "argentinacity"], ["state_id", 4], ["updated_at", Thu, 28 Aug 2014 16:45:05 UTC +00:00]] SQL (0.2ms) INSERT INTO "cities" ("country_id", "created_at", "name", "state_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["country_id", 1], ["created_at", Thu, 28 Aug 2014 16:45:05 UTC +00:00], ["name", "brazilcity"], ["state_id", 4], ["updated_at", Thu, 28 Aug 2014 16:45:05 UTC +00:00]]  (3.4ms) commit transaction Redirected to http://localhost:3021/admin/states Completed 302 Found in 32ms (ActiveRecord: 11.5ms) Started GET "/admin/states" for 10.0.2.2 at 2014-08-28 16:45:05 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (135.3ms)  (1.6ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.5ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (352.9ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.4ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.4ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 747ms (Views: 686.0ms | ActiveRecord: 10.5ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:06 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:06 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:06 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:07 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:07 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:07 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:07 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:07 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:08 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:08 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:08 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:08 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:08 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:09 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:09 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:09 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:09 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:09 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:10 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:10 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:10 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:10 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:10 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:11 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:11 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:11 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:11 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:12 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:12 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:12 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:12 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:45:12 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:45:13 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:45:13 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409244308982" for 10.0.2.2 at 2014-08-28 16:45:13 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409244308982"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.4ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.2ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (163.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (27.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (129.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (129.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (132.7ms) Completed 200 OK in 1692ms (Views: 1684.5ms | ActiveRecord: 5.4ms) Started GET "/admin/cities" for 10.0.2.2 at 2014-08-28 16:45:18 +0000 Processing by Admin::CitiesController#index as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Admin::State Load (1.8ms) SELECT "states".* FROM "states" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (5.1ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (148.9ms)  (1.2ms) SELECT COUNT(*) FROM "cities" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (2.1ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: cities, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.8ms) SELECT COUNT(DISTINCT "cities"."id") FROM "cities" LEFT OUTER JOIN "countries" ON "countries"."id" = "cities"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (22.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (36.5ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (341.0ms) Carnival::AdminUserNotification Load (1.7ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (2.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (9.1ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (10.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 723ms (Views: 705.2ms | ActiveRecord: 13.5ms) Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:19 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:20 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:20 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:21 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:21 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:21 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:22 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:22 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:22 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:22 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:22 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:23 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:23 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:23 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:23 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:23 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:24 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:24 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:24 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:24 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:25 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:25 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:25 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:25 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:26 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:45:26 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:45:26 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:45:26 +0000 Started GET "/admin/cities.json?scope=all&from=2014-08-01&to=2014-08-31&sEcho=1&iColumns=7&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&iSortingCols=0&bSortable_0=false&bSortable_1=false&bSortable_2=false&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&_=1409244322357" for 10.0.2.2 at 2014-08-28 16:45:26 +0000 Processing by Admin::CitiesController#index as JSON Parameters: {"scope"=>"all", "from"=>"2014-08-01", "to"=>"2014-08-31", "sEcho"=>"1", "iColumns"=>"7", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "iSortingCols"=>"0", "bSortable_0"=>"false", "bSortable_1"=>"false", "bSortable_2"=>"false", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "_"=>"1409244322357"} Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.2ms) SELECT COUNT(*) FROM "cities" WHERE (cities.created_at between '2014-08-01 00:00:00' and '2014-08-31 23:59:59') Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" WHERE (cities.created_at between '2014-08-01 00:00:00' and '2014-08-31 23:59:59') ORDER BY cities.id asc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Admin::State Load (1.2ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.6ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (136.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (29.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (129.3ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.4ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 3]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.5ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (126.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (25.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (4.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (127.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::State Load (1.7ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.4ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 2]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (127.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" = ? LIMIT 1 [["id", 4]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.8ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.6ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (131.9ms) Completed 200 OK in 2277ms (Views: 2264.5ms | ActiveRecord: 9.9ms) Started GET "/admin/cities/new" for 10.0.2.2 at 2014-08-28 16:45:34 +0000 Processing by Admin::CitiesController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered admin/cities/new.html.haml within layouts/carnival/admin (1.1ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (58.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.2ms) Completed 200 OK in 383ms (Views: 376.1ms | ActiveRecord: 3.8ms) Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:35 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:35 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:36 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:36 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:36 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:36 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:36 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:37 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:37 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:37 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:37 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:37 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:38 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:38 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:38 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:38 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:38 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:39 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:39 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:39 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:39 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:40 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:40 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:40 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:40 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:41 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:41 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:41 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:45:41 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:45:41 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:45:42 +0000 Started GET "/admin/states" for 10.0.2.2 at 2014-08-28 16:45:45 +0000 Processing by Admin::StatesController#index as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.6ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (1.3ms) Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (0.5ms) Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/_advanced_search_field.html.haml (3.4ms) Rendered /project/app/views/carnival/shared/_advanced_search.html.haml (130.6ms)  (1.3ms) SELECT COUNT(*) FROM "states" DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.7ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code = 'BR') DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: states, countries) that are referenced in a string SQL snippet. For example: Post.includes(:comments).where("comments.title = 'foo'") Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string: Post.includes(:comments).where("comments.title = 'foo'").references(:comments) If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from block in scopes_counters at /project/app/presenters/carnival/base_admin_presenter.rb:59)  (1.3ms) SELECT COUNT(DISTINCT "states"."id") FROM "states" LEFT OUTER JOIN "countries" ON "countries"."id" = "states"."country_id" WHERE (countries.code <> 'BR') Rendered /project/app/views/carnival/shared/_scope.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_period_filter.html.haml (0.1ms) Rendered /project/app/views/carnival/base_admin/index.html.haml within layouts/carnival/admin (291.7ms) Carnival::AdminUserNotification Load (1.6ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (37.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 669ms (Views: 655.6ms | ActiveRecord: 10.2ms) Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:46 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:46 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:47 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:47 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:47 +0000 Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:47 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:48 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:48 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:48 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:48 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:48 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:49 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:49 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:49 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:49 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:49 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:50 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:50 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:50 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:50 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:50 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:51 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:51 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:51 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:52 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:52 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:52 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:52 +0000 Started GET "/assets/carnival/advanced_search.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:52 +0000 Started GET "/assets/carnival/data_tables_functions.js?body=1" for 10.0.2.2 at 2014-08-28 16:45:53 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:45:53 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:45:53 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:45:53 +0000 Started GET "/admin/states.json?scope=all&sEcho=1&iColumns=8&sColumns=&iDisplayStart=0&iDisplayLength=50&mDataProp_0=0&mDataProp_1=1&mDataProp_2=2&mDataProp_3=3&mDataProp_4=4&mDataProp_5=5&mDataProp_6=6&mDataProp_7=7&sSearch=&bRegex=false&sSearch_0=&bRegex_0=false&bSearchable_0=true&sSearch_1=&bRegex_1=false&bSearchable_1=true&sSearch_2=&bRegex_2=false&bSearchable_2=true&sSearch_3=&bRegex_3=false&bSearchable_3=true&sSearch_4=&bRegex_4=false&bSearchable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&sSearch_6=&bRegex_6=false&bSearchable_6=true&sSearch_7=&bRegex_7=false&bSearchable_7=true&iSortCol_0=2&sSortDir_0=desc&iSortingCols=1&bSortable_0=true&bSortable_1=true&bSortable_2=true&bSortable_3=false&bSortable_4=false&bSortable_5=false&bSortable_6=false&bSortable_7=false&_=1409244349612" for 10.0.2.2 at 2014-08-28 16:45:53 +0000 Processing by Admin::StatesController#index as JSON Parameters: {"scope"=>"all", "sEcho"=>"1", "iColumns"=>"8", "sColumns"=>"", "iDisplayStart"=>"0", "iDisplayLength"=>"50", "mDataProp_0"=>"0", "mDataProp_1"=>"1", "mDataProp_2"=>"2", "mDataProp_3"=>"3", "mDataProp_4"=>"4", "mDataProp_5"=>"5", "mDataProp_6"=>"6", "mDataProp_7"=>"7", "sSearch"=>"", "bRegex"=>"false", "sSearch_0"=>"", "bRegex_0"=>"false", "bSearchable_0"=>"true", "sSearch_1"=>"", "bRegex_1"=>"false", "bSearchable_1"=>"true", "sSearch_2"=>"", "bRegex_2"=>"false", "bSearchable_2"=>"true", "sSearch_3"=>"", "bRegex_3"=>"false", "bSearchable_3"=>"true", "sSearch_4"=>"", "bRegex_4"=>"false", "bSearchable_4"=>"true", "sSearch_5"=>"", "bRegex_5"=>"false", "bSearchable_5"=>"true", "sSearch_6"=>"", "bRegex_6"=>"false", "bSearchable_6"=>"true", "sSearch_7"=>"", "bRegex_7"=>"false", "bSearchable_7"=>"true", "iSortCol_0"=>"2", "sSortDir_0"=>"desc", "iSortingCols"=>"1", "bSortable_0"=>"true", "bSortable_1"=>"true", "bSortable_2"=>"true", "bSortable_3"=>"false", "bSortable_4"=>"false", "bSortable_5"=>"false", "bSortable_6"=>"false", "bSortable_7"=>"false", "_"=>"1409244349612"} Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1  (1.3ms) SELECT COUNT(*) FROM "states" Admin::State Load (1.3ms) SELECT "states".* FROM "states" ORDER BY states.code desc LIMIT 50 OFFSET 0 Rendered /project/app/views/carnival/shared/_list_cel.html.haml (28.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.2ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (154.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (32.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (5.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.9ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.5ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (142.4ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (27.2ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (1.1ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (137.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (26.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.7ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.6ms) CACHE (0.0ms) SELECT "countries".* FROM "countries" WHERE "countries"."id" = ? LIMIT 1 [["id", 1]] Rendered /project/app/views/carnival/shared/_list_cel.html.haml (3.5ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_list_cel.html.haml (0.8ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.3ms) Rendered /project/app/views/carnival/shared/_action_default.html.haml (0.1ms) Rendered /project/app/views/carnival/shared/_action_delete.html.haml (0.4ms) Rendered /project/app/views/carnival/shared/_item_buttons.html.haml (135.2ms) Completed 200 OK in 1749ms (Views: 1739.9ms | ActiveRecord: 5.6ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 16:45:57 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (2.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (39.7ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.8ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (84.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (215.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (367.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022__633396598 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (408.2ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (453.0ms) Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (6.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.8ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 870ms (Views: 858.7ms | ActiveRecord: 5.7ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:58 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:58 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:58 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:58 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:58 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:59 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:59 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:59 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:45:59 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:46:00 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:46:00 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:00 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:46:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:00 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:01 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:01 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:01 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:01 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:01 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:02 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:02 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:02 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:02 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:03 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:03 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:03 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:03 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:46:04 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:46:04 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:46:04 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:46:04 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:46:04 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:46:05 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:46:05 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 16:46:13 +0000 Started GET "/carnival/load_select_options?q=digi&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409244360693" for 10.0.2.2 at 2014-08-28 16:46:15 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"digi", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409244360693"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%digi%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.5ms) Started GET "/carnival/load_select_options?q=di&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409244360694" for 10.0.2.2 at 2014-08-28 16:46:17 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"di", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409244360694"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%di%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.6ms) Started GET "/carnival/load_select_options?q=bra&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409244360695" for 10.0.2.2 at 2014-08-28 16:46:18 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"bra", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409244360695"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.7ms) SELECT "countries".* FROM "countries" WHERE (name like '%bra%') Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 2.9ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 16:51:19 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (11.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml__141369912__619401488 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (13.6ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__450584180_89236480 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (88.7ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (258.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (440.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___101716022_89183730 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (491.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (525.1ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (35.2ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (7.1ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 1461ms (Views: 1360.8ms | ActiveRecord: 16.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:21 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:22 +0000 Started GET "/assets/select2.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:22 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:22 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:22 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:23 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:23 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:23 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 16:51:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:24 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:24 +0000 Started GET "/assets/select2.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:24 +0000 Started GET "/assets/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:25 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 16:51:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 16:51:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 16:51:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 16:51:28 +0000 Started GET "/assets/select2.png" for 10.0.2.2 at 2014-08-28 16:51:28 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 16:51:28 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 16:51:28 +0000 Started GET "/assets/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 16:51:33 +0000 Started GET "/carnival/load_select_options?q=braz&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409244684155" for 10.0.2.2 at 2014-08-28 16:51:34 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"braz", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409244684155"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.3ms) SELECT "countries".* FROM "countries" WHERE (name like '%braz%') Completed 200 OK in 37ms (Views: 0.2ms | ActiveRecord: 4.1ms) Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409244684156" for 10.0.2.2 at 2014-08-28 17:01:36 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409244684156"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 2.8ms) Started GET "/carnival/load_select_options?q=ars&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409244684157" for 10.0.2.2 at 2014-08-28 17:01:39 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ars", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409244684157"} Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ars%') Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 17:17:57 +0000 ActiveRecord::SchemaMigration Load (1.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (35.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (28.8ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___237009099__618389988 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (16.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__201992069_92435860 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (90.1ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (358.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (585.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__577989057_96569460 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (965.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1046.3ms) Completed 500 Internal Server Error in 1765ms Sprockets::FileNotFound - couldn't find file 'carnival/externa/select2/select2' (in /project/app/assets/javascripts/carnival/admin.js:3): sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:91:in `block in javascript_include_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:90:in `javascript_include_tag' /project/app/views/layouts/carnival/admin.html.haml:9:in `__project_app_views_layouts_carnival_admin_html_haml___300077779_91888280' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__45366289__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__833678333__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/91734450/variables" for 10.0.2.2 at 2014-08-28 17:18:00 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 17:18:52 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.8ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___237009099__618389988 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__201992069_92435860 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (184.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (342.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__577989057_96569460 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (377.4ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (410.6ms) Completed 500 Internal Server Error in 863ms Sprockets::FileNotFound - couldn't find file 'carnival/external/select2/select2' (in /project/app/assets/javascripts/carnival/admin.js:3): sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:91:in `block in javascript_include_tag' sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:90:in `javascript_include_tag' /project/app/views/layouts/carnival/admin.html.haml:9:in `__project_app_views_layouts_carnival_admin_html_haml___300077779_91888280' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__45366289__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__833678333__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/91996730/variables" for 10.0.2.2 at 2014-08-28 17:18:54 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 17:19:25 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (47.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___237009099__618389988 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.3ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (8.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__201992069_92435860 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (82.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (173.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (352.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__577989057_96569460 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (387.5ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (420.3ms) Carnival::AdminUserNotification Load (2.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (51.7ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (9.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (3.2ms) Completed 200 OK in 1326ms (Views: 1314.5ms | ActiveRecord: 8.3ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:26 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:27 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:27 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:27 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:27 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:28 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:28 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:28 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:28 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:29 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:29 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 17:19:29 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:29 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:30 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:30 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:30 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:30 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:31 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:31 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:31 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:31 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:32 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:32 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:33 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:33 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:33 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:33 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 17:19:34 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 17:19:34 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 17:19:34 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 17:19:35 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 17:19:35 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-08-28 17:19:35 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2.png"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (71.0ms) Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 17:19:35 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-08-28 17:19:36 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2.png"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.7ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (131.7ms) Started GET "/assets/carnival/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 17:19:38 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2-spinner.gif"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (54.4ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409246370063" for 10.0.2.2 at 2014-08-28 17:19:39 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409246370063"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.6ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 36ms (Views: 0.2ms | ActiveRecord: 4.4ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 17:20:43 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___237009099__618389988 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.4ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (9.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml__201992069_92435860 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (3.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (82.5ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (175.3ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (322.5ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__577989057_96569460 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (393.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (426.1ms) Carnival::AdminUserNotification Load (1.1ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.2ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (5.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 772ms (Views: 764.0ms | ActiveRecord: 5.5ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:44 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:44 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:44 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:45 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:45 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:45 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:45 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:46 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:46 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:46 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:46 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 17:20:47 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:47 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:47 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:47 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:48 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:48 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:48 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:48 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:49 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:49 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:49 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:49 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:50 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:50 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:50 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:50 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:51 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 17:20:51 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 17:20:51 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 17:20:51 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-08-28 17:20:52 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 17:20:52 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 17:20:52 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 17:20:52 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 18:09:17 +0000 ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (34.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (1.9ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.1ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___903691339_71724690 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.7ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (18.0ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___909750003_87386860 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (87.6ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (360.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (588.0ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___476411352_87362810 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (964.9ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (1042.1ms) Carnival::AdminUserNotification Load (1.9ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (46.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (43.2ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.3ms) Completed 200 OK in 2168ms (Views: 2012.0ms | ActiveRecord: 13.2ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:20 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:20 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:21 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:22 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:22 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 18:09:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:23 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:23 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:24 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:25 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:26 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 18:09:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 18:09:27 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 18:09:28 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 18:09:28 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 18:09:28 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 18:09:28 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-08-28 18:09:29 +0000 Started GET "/assets/carnival/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 18:09:30 +0000 ActionController::RoutingError (No route matches [GET] "/assets/carnival/select2-spinner.gif"): actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.9ms) Rendered /home/vagrant/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (70.9ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409249363443" for 10.0.2.2 at 2014-08-28 18:09:31 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409249363443"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (2.1ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 39ms (Views: 0.3ms | ActiveRecord: 5.5ms) Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409249363444" for 10.0.2.2 at 2014-08-28 18:10:15 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409249363444"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 18:10:19 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.5ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___903691339_71724690 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.5ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (36.2ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___909750003_87386860 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (20.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (60.0ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (150.3ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (278.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (431.3ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml___476411352_87362810 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (470.1ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (504.5ms) Carnival::AdminUserNotification Load (1.4ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.3ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (7.3ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (6.7ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (0.1ms) Completed 200 OK in 872ms (Views: 862.8ms | ActiveRecord: 5.8ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:20 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:20 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:21 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:21 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:21 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:21 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:22 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:22 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:22 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:22 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:23 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 18:10:23 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:23 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:23 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:24 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:24 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:24 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:24 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:25 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:25 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:25 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:25 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:26 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:26 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:26 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:27 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:27 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 18:10:27 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 18:10:27 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 18:10:28 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-08-28 18:10:28 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 18:10:28 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 18:10:28 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 18:10:29 +0000 Started GET "/assets/carnival/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 18:10:30 +0000 Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409249423709" for 10.0.2.2 at 2014-08-28 18:10:31 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409249423709"} Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.4ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 2.8ms) Started GET "/carnival/load_select_options?q=br&search_field=name&model_name=country&presenter_name=Admin%3A%3ACityPresenter&_=1409249423710" for 10.0.2.2 at 2014-08-28 18:10:45 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"br", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::CityPresenter", "_"=>"1409249423710"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.2ms) SELECT "countries".* FROM "countries" WHERE (name like '%br%') Completed 200 OK in 19ms (Views: 0.1ms | ActiveRecord: 2.7ms) Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 18:31:18 +0000 ActiveRecord::SchemaMigration Load (2.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (33.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (95.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (252.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (624.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (730.0ms) Completed 500 Internal Server Error in 1017ms RuntimeError - No input found for admin_relationship_select_remote: simple_form (3.0.1) lib/simple_form/form_builder.rb:551:in `find_mapping' simple_form (3.0.1) lib/simple_form/form_builder.rb:482:in `find_input' simple_form (3.0.1) lib/simple_form/form_builder.rb:111:in `input' /project/app/views/carnival/shared/form/_field.html.haml:23:in `__project_app_views_carnival_shared_form__field_html_haml___190161874_87508180' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__332490934_92317730' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__332490934_92317730' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__472944235_87598720' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__153484116__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__824463134__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92279100/variables" for 10.0.2.2 at 2014-08-28 18:31:20 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 18:31:25 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (53.1ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.6ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (85.2ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (240.8ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (277.8ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (313.6ms) Completed 500 Internal Server Error in 409ms RuntimeError - No input found for admin_relationship_select_remote: simple_form (3.0.1) lib/simple_form/form_builder.rb:551:in `find_mapping' simple_form (3.0.1) lib/simple_form/form_builder.rb:482:in `find_input' simple_form (3.0.1) lib/simple_form/form_builder.rb:111:in `input' /project/app/views/carnival/shared/form/_field.html.haml:23:in `__project_app_views_carnival_shared_form__field_html_haml___190161874_87508180' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__332490934_92317730' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__332490934_92317730' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__472944235_87598720' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__153484116__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__824463134__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/87725090/variables" for 10.0.2.2 at 2014-08-28 18:31:26 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 18:32:05 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (18.2ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.0ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (63.5ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (222.9ms) Rendered /project/app/views/carnival/shared/form/_form.html.haml (275.6ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (311.5ms) Completed 500 Internal Server Error in 566ms NoMethodError - undefined method `each' for nil:NilClass: /project/app/inputs/carnival_select_remote_input.rb:16:in `input' simple_form (3.0.1) lib/simple_form/components/label_input.rb:11:in `label_input' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:29:in `block in render' simple_form (3.0.1) lib/simple_form/wrappers/many.rb:27:in `render' simple_form (3.0.1) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.0.1) lib/simple_form/form_builder.rb:120:in `input' /project/app/views/carnival/shared/form/_field.html.haml:23:in `__project_app_views_carnival_shared_form__field_html_haml___190161874_87508180' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_inner_form.html.haml:14:in `block (2 levels) in __project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' /project/app/views/carnival/shared/form/_inner_form.html.haml:8:in `block in __project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' /project/app/views/carnival/shared/form/_inner_form.html.haml:6:in `__project_app_views_carnival_shared_form__inner_form_html_haml__810054220_82749670' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/shared/form/_form.html.haml:2:in `block in __project_app_views_carnival_shared_form__form_html_haml__332490934_92317730' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.5) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.5) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:22:in `block in simple_form_for' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:41:in `with_simple_form_field_error_proc' simple_form (3.0.1) lib/simple_form/action_view_extensions/form_helper.rb:21:in `simple_form_for' /project/app/views/carnival/shared/form/_form.html.haml:1:in `__project_app_views_carnival_shared_form__form_html_haml__332490934_92317730' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.5) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.5) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /project/app/views/carnival/base_admin/new.html.haml:7:in `__project_app_views_carnival_base_admin_new_html_haml__472944235_87598720' actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.4) lib/action_view/template.rb:141:in `render' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked_pdf (0.9.10) lib/wicked_pdf/pdf_helper.rb:23:in `render_with_wicked_pdf' /project/app/controllers/carnival/base_admin_controller.rb:55:in `block (2 levels) in new' actionpack (4.0.4) lib/action_controller/metal/responder.rb:231:in `default_render' actionpack (4.0.4) lib/action_controller/metal/responder.rb:161:in `to_html' responders (1.0.0) lib/responders/flash_responder.rb:104:in `to_html' actionpack (4.0.4) lib/action_controller/metal/responder.rb:154:in `respond' actionpack (4.0.4) lib/action_controller/metal/responder.rb:147:in `call' actionpack (4.0.4) lib/action_controller/metal/mime_responds.rb:330:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:19:in `new' /project/app/controllers/carnival/base_admin_controller.rb:52:in `new' actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__153484116__process_action__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call' bullet (4.6.0) lib/bullet/rack.rb:13: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 `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' actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.4) 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.4) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.4) lib/active_record/migration.rb:373:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__824463134__call__callbacks' activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' better_errors (0.9.0) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (0.9.0) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (0.9.0) lib/better_errors/middleware.rb:56:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.0.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.4) 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.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.4) lib/rails/engine.rb:511:in `call' railties (4.0.4) 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/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/vagrant/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Started POST "/__better_errors/92608370/variables" for 10.0.2.2 at 2014-08-28 18:32:07 +0000 Started GET "/admin/states/new" for 10.0.2.2 at 2014-08-28 18:32:48 +0000 Processing by Admin::StatesController#new as HTML Carnival::AdminUser Load (1.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Rendered /project/app/views/carnival/shared/form/_field.html.haml (16.3ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (2.4ms) Rendered /project/app/views/carnival/shared/form/_field.html.haml (15.7ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from __project_app_views_carnival_shared_form__nested_form_options_html_haml___26308223__620987088 at /project/app/views/carnival/shared/form/_nested_form_options.html.haml:19) Admin::City Load (1.6ms) SELECT "cities".* FROM "cities" Rendered /project/app/views/carnival/shared/form/_nested_form_options.html.haml (52.4ms) DEPRECATION WARNING: link_to_function is deprecated and will be removed from Rails 4.1. We recommend using Unobtrusive JavaScript instead. See http://guides.rubyonrails.org/working_with_javascript_in_rails.html#unobtrusive-javascript. (called from block in __project_app_views_carnival_shared_form__nested_form_html_haml___697533857__617725738 at /project/app/views/carnival/shared/form/_nested_form.html.haml:16) Rendered /project/app/views/carnival/shared/form/_field.html.haml (17.6ms) Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" Rendered /project/app/views/carnival/shared/form/_field.html.haml (46.7ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (141.0ms) Rendered /project/app/views/carnival/shared/form/_nested_form.html.haml (418.1ms) Rendered /project/app/views/carnival/shared/form/_inner_form.html.haml (616.1ms) DEPRECATION WARNING: :disable_with option is deprecated and will be removed from Rails 4.1. Use 'data: { disable_with: 'Text' }' instead. (called from block in __project_app_views_carnival_shared_form__form_html_haml__332490934_92317730 at /project/app/views/carnival/shared/form/_form.html.haml:5) Rendered /project/app/views/carnival/shared/form/_form.html.haml (658.0ms) Rendered /project/app/views/carnival/base_admin/new.html.haml within layouts/carnival/admin (692.6ms) Carnival::AdminUserNotification Load (1.8ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] CACHE (0.0ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? AND "admin_user_notifications"."read" = 'f' [["admin_user_id", 1]] Carnival::AdminUserNotification Load (1.5ms) SELECT "admin_user_notifications".* FROM "admin_user_notifications" WHERE "admin_user_notifications"."admin_user_id" = ? ORDER BY created_at desc [["admin_user_id", 1]] Rendered /project/app/views/layouts/carnival/_notifications_list.html.haml (51.9ms) Rendered /project/app/views/layouts/carnival/_menu.html.haml (46.6ms) Rendered /project/app/views/carnival/shared/_application_popup_partial.html.haml (2.7ms) Completed 200 OK in 1799ms (Views: 1686.4ms | ActiveRecord: 17.4ms) Started GET "/assets/carnival/admin.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:51 +0000 Started GET "/assets/carnival/chosen.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:51 +0000 Started GET "/assets/carnival/jquery.noty.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:51 +0000 Started GET "/assets/carnival/datatable.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:52 +0000 Started GET "/assets/carnival/vizir-grid.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:52 +0000 Started GET "/assets/carnival/colorbox.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:52 +0000 Started GET "/assets/carnival/formframe.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:52 +0000 Started GET "/assets/carnival/main.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:53 +0000 Started GET "/assets/carnival/select2.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:53 +0000 Started GET "/assets/carnival/jquery-ui-1.8.11.custom.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:53 +0000 Started GET "/assets/carnival/perfect-scrollbar-0.4.6.min.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:53 +0000 Started GET "/assets/carnival/jquery.fancybox.css?body=1" for 10.0.2.2 at 2014-08-28 18:32:54 +0000 Started GET "/assets/jquery.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:54 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:54 +0000 Started GET "/assets/carnival/external/select2/select2.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:55 +0000 Started GET "/assets/carnival/external/select2/select2_locale_pt-BR.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:55 +0000 Started GET "/assets/carnival/external/jquery.dataTables.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:55 +0000 Started GET "/assets/carnival/external/noty/jquery.noty.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:55 +0000 Started GET "/assets/carnival/external/noty/layouts/bottom.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:56 +0000 Started GET "/assets/carnival/external/noty/themes/default.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:56 +0000 Started GET "/assets/carnival/external/jquery.colorbox-min.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:56 +0000 Started GET "/assets/carnival/external/jquery-ui-1.9.1.custom.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:56 +0000 Started GET "/assets/carnival/external/chosen.jquery.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:57 +0000 Started GET "/assets/carnival/external/perfect-scrollbar-0.4.6.with-mousewheel.min.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:57 +0000 Started GET "/assets/carnival/external/jquery.fancybox.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:57 +0000 Started GET "/assets/carnival/select_remote.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:58 +0000 Started GET "/assets/carnival/vizir_admin.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:58 +0000 Started GET "/assets/carnival/admin.js?body=1" for 10.0.2.2 at 2014-08-28 18:32:58 +0000 Started GET "/assets/carnival/avatar.png" for 10.0.2.2 at 2014-08-28 18:32:59 +0000 Started GET "/assets/carnival/header-bg.png" for 10.0.2.2 at 2014-08-28 18:32:59 +0000 Started GET "/assets/carnival/sprites.png" for 10.0.2.2 at 2014-08-28 18:32:59 +0000 Started GET "/assets/carnival/voltar.png" for 10.0.2.2 at 2014-08-28 18:32:59 +0000 Started GET "/assets/carnival/bg_button.png" for 10.0.2.2 at 2014-08-28 18:33:00 +0000 Started GET "/assets/carnival/chosen-sprite.png" for 10.0.2.2 at 2014-08-28 18:33:00 +0000 Started GET "/assets/carnival/select2.png" for 10.0.2.2 at 2014-08-28 18:33:00 +0000 Started GET "/assets/carnival/select2-spinner.gif" for 10.0.2.2 at 2014-08-28 18:33:01 +0000 Started GET "/carnival/load_select_options?q=ar&search_field=name&model_name=country&presenter_name=Admin%3A%3AStatePresenter&_=1409250774612" for 10.0.2.2 at 2014-08-28 18:33:02 +0000 Processing by Carnival::BaseAdminController#load_select_options as JSON Parameters: {"q"=>"ar", "search_field"=>"name", "model_name"=>"country", "presenter_name"=>"Admin::StatePresenter", "_"=>"1409250774612"} Carnival::AdminUser Load (1.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 ORDER BY "admin_users"."id" ASC LIMIT 1 Admin::Country Load (1.5ms) SELECT "countries".* FROM "countries" WHERE (name like '%ar%') Completed 200 OK in 24ms (Views: 0.2ms | ActiveRecord: 3.0ms)